快速排序 java实现

//快速排序就是以一个基准值为标准,将一个待排序的数组分为比它大和比它小的两部分。
public class QuickSort {
    public static void main(String[] args) {
        int a[]={34,65,87,23,12,21,87,98,11,34,45,67,98};
        System.out.println(Arrays.toString(achieveQuickSort(a,0,a.length-1)));
    }
    public static int[] achieveQuickSort(int a[],int first,int last){
        int start =first;
        int end =last;
        int standardValue=a[first];
        while(end>start){
            //从后向前走,如果比基准值小就交换位置,否则end--
            while(end>start&&a[end]>=standardValue) end--;
            if(standardValue>a[end]){
                int temp=a[end];
                a[end]=a[start];
                a[start]=temp;
            }
            //从前向后走,如果比基准值大就交换位置,否则start++
            while(end>start&&standardValue>=a[start]) start++;
            if(a[start]>standardValue){
                int temp=a[start];
                a[start]=a[end];
                a[end]=temp;
            }
        }
        //此时start和end是相等的。
        if(start>first) achieveQuickSort(a,first,start-1);
        if(end<last) achieveQuickSort(a,start+1,last);
        return a;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值