Итак, я пытаюсь создать метод быстрой сортировки, однако он не сортируется должным образом.Вот мой ввод и вывод
Исходный массив:
80,0 10,0 50,0 70,0 60,0 90,0 20,0 30,0 40,0 0,0
Сортированный массив:
0,0 30,0 20,0 80,0 40,0 60,0 70,0 10,0 90,0 50,0
Iпопытался изменить цикл for на for(int i = left; i < right; i++)
, но теперь вывод:
0,0 20,0 30,0 40,0 80,0 10,0 60,0 90,0 70,0 50,0
public static void sort(double[] a)
{
quickSort(a, 0, a.length-1);
}
public static void quickSort(double [] a, int left, int right)
{
if (left < right)
{
int pivotIndex = (left+right)/2;
int pos = partition(a,left,right,pivotIndex);
quickSort(a,left,pos-1);
quickSort(a,pos+1,right);
}
}
private static int partition(double [] a, int left,int right,int pivotIndex)
{
double temp = a[pivotIndex];
a[pivotIndex] = a[right];
a[right] = temp;
int pos = left;//represents boundary between small and large elements
for(int i = left; i < right-1; i++)
{
if (a[i] <= a[pivotIndex])
{
double temp2 = a[i];
a[i] = a[pos];
a[pos] = temp2;
pos++;
}
}
double temp3 = a[pivotIndex];
a[pivotIndex] = a[pos];
a[pos] = temp3;
return pos;
}