关于快速排序

时间:2010-06-08 07:46:28

标签: java data-structures sorting quicksort

我已编写此代码,但它会在控制台中打印这些堆栈跟踪,请帮助我谢谢! (Aslo“p”和“q”分别是我们数组的第一个和最后一个索引)

public class JavaQuickSort {

public static void QuickSort(int A[], int p, int q) {
    int i, last = 0;

    Random rand = new Random();
    if (q < 1) {
        return;
    }
    **swap(A, p, rand.nextInt() % (q+1));**

    for (i = p + 1; i <= q; i++) {
        if (A[i] < A[p]) {
            swap(A, ++last, i);
        }

    }
    swap(A, p, last);
    QuickSort(A, p, last - 1);
    QuickSort(A, last + 1, q);
}

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


}
public static void main(String[] args){
    int[] A = {2,5,7,3,9,0,1,6,8};
    **QuickSort(A, 0,8 );**
    System.out.println(Arrays.toString(A));
}
}

堆栈跟踪:

run:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -3
        at JavaQuickSort.swap(JavaQuickSort.java:38)
        at JavaQuickSort.QuickSort(JavaQuickSort.java:22)
        at JavaQuickSort.main(JavaQuickSort.java:45)
Java Result: 1
BUILD SUCCESSFUL (total time: 2 seconds)

我还粗引那些导致这些堆栈跟踪的语句。喜欢==&gt; ** ...... **

编辑:

public class JavaQuickSort {

public static void QuickSort(int arr[],int lo,int hi) {
    int n = arr.length;
    if(n<=1)
        return;
    **int r = partition(arr);**
    **QuickSort(arr,lo , r-1);**
    QuickSort(arr, r+1, hi);
}

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


}
public static int partition(int arr[]){
      int i, last = 0;
 Random rand = new Random();
    int n = arr.length;
    if (n <= 1)
        return arr[0];

    **swap(arr, 0, rand.nextInt(n));**

    for (i =1; i <n; i++) {
        if (arr[i] < arr[0]) {
            swap(arr, ++last, i);
        }

    }
    swap(arr, 0, last);
    return last;
}
public static void main(String[] args){
    int[] A = {2,5,7,3,9,0,1,6,8};
    **QuickSort(A, 0,8 );**
    System.out.println(Arrays.toString(A));
}
}

我已经编辑了我的帖子,因为它更容易理解,它也会打印出这些堆栈的痕迹,并加粗导致这些堆栈痕迹的行!

堆栈跟踪:

run:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -1
        at JavaQuickSort.swap(JavaQuickSort.java:27)
        at JavaQuickSort.partition(JavaQuickSort.java:39)
        at JavaQuickSort.QuickSort(JavaQuickSort.java:19)
        at JavaQuickSort.QuickSort(JavaQuickSort.java:20)
        at JavaQuickSort.QuickSort(JavaQuickSort.java:20)
        at JavaQuickSort.QuickSort(JavaQuickSort.java:20)
        at JavaQuickSort.QuickSort(JavaQuickSort.java:20)
        at JavaQuickSort.main(JavaQuickSort.java:52)
Java Result: 1
BUILD SUCCESSFUL (total time: 2 seconds)

请帮助我谢谢

已编辑:

我写过这段代码时注意到这篇文章的最新答案,但它不会排序我的阵列!!!

public class JavaQuickSort {

public static void QuickSort(int arr[], int lo, int hi) {
    if (hi > lo) {
         Random rand = new Random();
        int pivotIndex = lo + rand.nextInt(hi-lo+1);
        int pivotnewIndex = partition(arr, lo, hi,pivotIndex);
        QuickSort(arr, lo, pivotnewIndex - 1);
        QuickSort(arr, pivotnewIndex + 1, hi);
    }
}

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


}

public static int partition(int arr[],int lo,int hi,int pivotIndex)
{
    int pivotValue = arr[pivotIndex];
    swap(arr, hi, pivotIndex);
    int storeIndex = lo;
    for(int i = lo;i<hi;i++){
        if (arr[i]<=pivotValue)
        swap(arr, storeIndex, i);
        storeIndex = storeIndex ++;
    }
    swap(arr, storeIndex, hi);
    return storeIndex;

}

public static void main(String[] args) {
    int[] A = {2, 5, 7, 3, 9, 0, 1, 6, 8};
    QuickSort(A, 0, 8);
    System.out.println(Arrays.toString(A));
}
}

输出:

run:
[2, 9, 3, 8, 0, 6, 7, 1, 5]
BUILD SUCCESSFUL (total time: 2 seconds)

我需要你的帮助我真的很困惑!!!

4 个答案:

答案 0 :(得分:3)

您的代码存在以下问题:

  • 不要为一次使用创建新的Random实例。只需创建一次,将其存储在static字段中,然后使用它为您的应用程序生成许多随机数。
  • 为数据透视创建随机索引时,它必须介于pq之间。
  • 使用Random.nextInt(int n)重载生成给定范围内的随机数
  • 也许使用lohi代替pqint[] arr代替int A[]
  • 您可以使用.length成员
  • 获取数组的长度

至于quicksort algoritm本身,它看起来不像我以前见过的任何东西。我建议研究标准的命令式实施并对其进行调整。

另见


更新

不幸的是,你在某种程度上混淆了维基百科的伪代码。您想要调整此算法:

  function partition(array, left, right, pivotIndex)
     pivotValue := array[pivotIndex]
     swap array[pivotIndex] and array[right] // Move pivot to end
     storeIndex := left
     for i  from  left to right - 1 // left ≤ i < right  
         if array[i] ≤ pivotValue 
             swap array[i] and array[storeIndex]
             storeIndex := storeIndex + 1
     swap array[storeIndex] and array[right] // Move pivot to its final place
     return storeIndex

  procedure quicksort(array, left, right)
     if right > left
         select a pivot index //(e.g. pivotIndex := left+(right-left)/2)
         pivotNewIndex := partition(array, left, right, pivotIndex)
         quicksort(array, left, pivotNewIndex - 1)
         quicksort(array, pivotNewIndex + 1, right)

请注意,上述算法选择leftright之间子数组的中间元素作为数据透视索引。由于您需要随机快速排序,因此您需要选择leftright之间的随机索引,因此需要按以下方式更改公式:

  pivotIndex := left + (random number between 0 and right-left inclusive)

因此,例如,如果left = 5right = 7,那么您希望pivotIndex5 + x,其中x是{{1}之间的随机数}和0包含。

由于7-5=2具有独占上限,因此将其转换为Java将类似于:

Random.nextInt(n)

最终更正

你在这里为初学者犯了一个常见的错误:

int pivotIndex = lo + rand.nextInt(hi - lo + 1);

如果您注意到上面的伪代码,则两个语句都应该是 // HORRIBLE FORMATTING! Don't do this! if (arr[i]<=pivotValue) swap(arr, storeIndex, i); storeIndex = storeIndex ++; 正文的一部分,但上面的代码,如果正确缩进并添加了大括号,就是这样:

if

因此,修正是将 // PROPER FORMATTING! Reveals bug instantly! if (arr[i]<=pivotValue) { swap(arr, storeIndex, i); } storeIndex = storeIndex ++; 增量移动到storeIndex正文,如下所示:

if

或者您也可以这样做:

    // Corrected according to pseudocode!
    if (arr[i]<=pivotValue) {
        swap(arr, storeIndex, i);
        storeIndex = storeIndex ++;
    }

最新更新的教训是:

  • 始终正确缩进代码
    • 一个好的IDE可以让这一切变得轻而易举,你真的没有任何借口
  • 养成在 // Nice and clear! if (arr[i]<=pivotValue) { swap(arr, storeIndex++, i); } 语句上加括号的习惯,即使它们不是绝对必要的
    • 许多微妙的错误是由于遗漏了大括号
  • 明智地使用发布/预增量
    • 像许多事情一样,它们可能会被滥用而无法理解,但是恰当地使用它们会导致简洁易读的代码

最后一件事

当我提到if数组时,我的意思是代替这个:

.length

你应该这样做:

int[] A = {2, 5, 7, 3, 9, 0, 1, 6, 8};
QuickSort(A, 0, 8); // BAD! Don't hardcode array length!

答案 1 :(得分:0)

随机生成器产生正值和负值。这就是为什么最终你用负q值调用swap。

答案 2 :(得分:0)

swap(A, p, rand.nextInt() % (q+1));

生成的随机整数可能低于p,显然你希望它是p和q之间的东西。

答案 3 :(得分:0)

由于这是 作业,我将家庭作业类别包含在自学中,您应该只使用标准Arrays.sort(int[])