Was muss ich hier ändern um negative Zahlen korrekt zu sotieren?
Code:
public int[] bubbleSort(int[] a1){
int i = 1;
if(a1.length == 0){
return a1;
}
int zwischenschpeicher =0;
do{
if(a1[i]<a1[--i] ){ i++;
zwischenschpeicher = a1[i];
a1[i] = a1[--i];
a1[i] = zwischenschpeicher;
}
i++;
i++;
} while(i < a1.length);
return a1;
}