使用java快速排序

时间:2014-11-16 07:37:45

标签: java quicksort array-algorithms

此程序在编译时显示错误,有人可以提出错误吗?

主要课程:

import java.util.Scanner;
public class Sortingpro {
    public static void main(String[] args) {
        Scanner input=new Scanner(System.in);
        System.out.println("Enter the number of elements");
        int a=input.nextInt();
        int A[]=new int[a];
        System.out.println("Enter the elements");
        for(int i=0;i<a;i++){
            A[i]=input.nextInt();
        }
        sort quick=new sort(A,a);
        quick.display(A,a);
    }
}

排序类:

public class sort {
    int A[],size;
    sort(int a[],int s){
        this.A=a;
        this.size=s;
        quickSort(a,1,s);
    }
    void quickSort(int a[],int p,int r){
        while(p<r){
            int q;
            q=Partition(A,p,r);
            quickSort(A,p,q-1);
            quickSort(A,q+1,r);
        }
    }

    int Partition(int a[],int p,int r)
    {
        int x=a[r];
        int i=p-1;
        for(int j=p;j<r;j++){
            if(a[j]<=x){
                i+=1;
                int temp=a[i];
                a[i]=a[j];
                a[j]=temp;
            }
        }
        int temp=a[i+1];
        a[i+1]=a[r];
        a[r]=temp;
        return i=1;
    };
    void display(int A[],int size){
        this.A=A;
        this.size=size;
        for(int i=0;i<size;i++){
            System.out.println(A);
        }
    }

}

异常。

*****The sorting algorithm used is from CLRS.
      I am getting the following errors through Netbeans:
      Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 3
      at sortingpro.sort.Partition(sort.java:31)
      at sortingpro.sort.quickSort(sort.java:23)
      at sortingpro.sort.<init>(sort.java:17)
      at sortingpro.Sortingpro.main(Sortingpro.java:26)

      Can you please elaborate on these errors and the remedial methods to be undertaken to solve                    the problem? Also any better methods to implement this program,coding wise?

对该算法的任何建议也是受欢迎的。但是我更希望维护该程序的本质。


1 个答案:

答案 0 :(得分:2)

这是堆栈跟踪说:

您调用了最大大小的快速排序,就像我输入10个元素一样,您用10调用s

quickSort(a,1,s);

这反过来调用

q=Partition(A,p,r);

r为10,后者又使用数组[r]

现在数组从索引0开始,直到你的情况下为r-1,因此你得到ArrayIndexOutOfBound异常。因此,使用s-1作为最后一个参数并将0作为起始索引,即。

,调用您的快速排序方法
quickSort(a,0,s-1);

同样在你的递归解决方案中,你正在使用while循环,它应该是if。所以你的快速排序就变成了:

void quickSort(int a[],int p,int r){
    if(p<r){
        int q;
        q=Partition(A,p,r);
        quickSort(A,p,q-1);
        quickSort(A,q+1,r);
    }
}