实现Quicksort

时间:2012-10-26 17:41:09

标签: java quicksort

我正在尝试实施quicksort,但我没有得到正确的结果。这是我的代码:

public static void quickSort(Comparable[] a, int start, int stop) {
    if (start < stop) {
        int pivot = partition(a, start ,stop);
        System.out.print("Pivot: "+a[pivot]+" Array: ");
        printArray(a);
        quickSort(a,start,pivot-1);
        quickSort(a,pivot+1, stop);
    }       
}

public static int partition(Comparable[] a, int start, int stop) {
    Comparable pivot = a[stop];
    int i = start;
    int j = stop-1;


     while (i < j) {
            while( (isLess(a[i], pivot)|| isEqual(a[i], pivot)))
                i++;
            while((isGreater(a[j], pivot)|| isEqual(a[j], pivot)))
                j--;
            if(i < j)
                swap(a, i,j);
        } 

    swap(a,i, stop);

    return i;

}

输入:{51,17,82,10,97,6,23,45,6,73},我得到的结果:6 6 10 17 23 45 51 73 97 82 输入:{12,9,4,99,120,1,3,10},我得到一个索引越界错误。我会在错误的地方感谢一些帮助。

3 个答案:

答案 0 :(得分:1)

你的两个问题是无关的。

{51,17,82,10,97,6,23,45,6,73}的问题是 - stop == start + 1会发生什么?然后是i == start == stop - 1 == j,因此您永远不会输入while - 循环,因此您无条件地swap(a, i, stop) - 即使a[i] 已经已经小于{{1} }}

a[stop]的问题似乎是你没有读过堆栈跟踪。 ;-)假设你有一个不错的Java编译器和JVM,它应该给你精确的行号和有问题的索引,所以你会看到问题出现在这一行:

{12,9,4,99,120,1,3,10}

while((isGreater(a[j], pivot)|| isEqual(a[j], pivot))) 到达j后。 (如果-1是感兴趣范围内的最小值,则会发生这种情况。)您只需要为此添加一个检查:

pivot

(就此而言,对于 while(j > start && (isGreater(a[j], pivot)|| isEqual(a[j], pivot))) 的相应案例:

i

。 。 。并且您需要学习如何调试代码。 : - )

答案 1 :(得分:0)

我推荐你Algorithms: Design and Analysis,斯坦福大学非常好的网络课程。完成本课程后,您将更容易编写此类代码。它是一个有点增强的版本,枢轴被选为三个中位数。请注意,您不必编写自己的printArray()函数。在Java中,您可以使用System.out.println(Arrays.toString(numbers))来完成。您还可以使用方法重载来观察如何以更优雅的方式调用quickSort(),只使用一个参数。

public class QuickSort
{

public static void main(String[] args)
{
    int numbers[] =
    { 51, 17, 82, 10, 97, 6, 23, 45, 6, 73 };
    quickSort(numbers);
    System.out.println(Arrays.toString(numbers));
}

public static void quickSort(int[] array)
{
    quickSort(array, 0, array.length - 1);
}

private static void quickSort(int[] array, int left, int right)
{
    if (left >= right)
    {
        return;
    }
    int pivot = choosePivot(array, left, right);
    pivot = partition(array, pivot, left, right);
    quickSort(array, left, pivot - 1);
    quickSort(array, pivot + 1, right);
}

private static int partition(int[] array, int pivot, int left, int right)
{
    swap(array, pivot, left);
    pivot = left;
    int i = left + 1;
    for (int j = left + 1; j <= right; j++)
    {
        if (array[j] < array[pivot])
        {
            swap(array, j, i);
            i++;
        }
    }
    swap(array, pivot, i - 1);
    return i - 1;
}

private static void swap(int[] array, int j, int i)
{
    int temp = array[j];
    array[j] = array[i];
    array[i] = temp;
}

private static int choosePivot(int[] array, int left, int right)
{
    return medianOfThree(array, left, (left + right) / 2, right);
    // return right;
}

private static int medianOfThree(int[] array, int aIndex, int bIndex, int cIndex)
{
    int a = array[aIndex];
    int b = array[bIndex];
    int c = array[cIndex];
    int largeIndex, smallIndex;
    if (a > b)
    {
        largeIndex = aIndex;
        smallIndex = bIndex;
    }
    else
    {
        largeIndex = bIndex;
        smallIndex = aIndex;
    }
    if (c > array[largeIndex])
    {
        return largeIndex;
    }
    else
    {
        if (c < array[smallIndex])
        {
            return smallIndex;
        }
        else
        {
            return cIndex;
        }
    }
}

}

答案 2 :(得分:0)

嗯,这是关于实施quicksort的代码,

public class QuickSort 
{
   int partition(int arrNum[], int low, int high)
   {
      int pivot = arrNum[high]; 
      int a = (low - 1); // smaller element index
      for(int b = low; b < high; b++)
      {
         // condition to check current element is smaller than or equal to pivot
         if(arrNum[b] <= pivot)
         {
            a++;
            // swapping arrNum[a] and arrNum[b]
            int temp = arrNum[a];
            arrNum[a] = arrNum[b];
            arrNum[b] = temp;
         }
      }

      // swapping arrNum[a + 1] and arrNum[high]
      int temp = arrNum[a + 1];
      arrNum[a + 1] = arrNum[high];
      arrNum[high] = temp;

      return a + 1;
   }

   void sortNumber(int arr[], int low, int high)
   {
      if(low < high)
      { 
         int part = partition(arr, low, high);
         // Recursive function sort elements before partition and after partition
         sortNumber(arr, low, part - 1);
         sortNumber(arr, part + 1, high);
      }
   }

   // printing utility function
   static void printingArray(int arr[])
   {
      int num = arr.length;
      for(int a = 0; a < num; ++a)
         System.out.print(arr[a] + " ");
      System.out.println();
   }

   public static void main(String[] args) 
   {
      int arr[] = {33, 36, 63, 34, 45, 78};
      int n = arr.length;

      QuickSort qs = new QuickSort();
      qs.sortNumber(arr, 0, n - 1);

      System.out.println("Quicksort sorted array : ");
      printingArray(arr);
   }
}