Hilfe! Ich bin ahnungslos. Kann mir jemand sagen, was dieses Programm macht?
Code
public static void bubbleSort(int[] sammlung)
{
int temp;
for (int i = 0; i < sammlung.length; i++)
for (int j = 0; j < sammlung.length-1; j++)
if (sammlung[j+1] < (sammlung[j]))
{ // vergleichen
temp = sammlung[j+1]; // austauschen
sammlung[j+1] = sammlung[j];
sammlung[j] = temp;
}
}
Alles anzeigen