快速排序 Java

快速排序,真的很快

快速排序和 归并排序的速度都很快, 因为它们都是在不断地 缩小问题的规模


/**
 * Created by fupeng on 2017/1/20.
 */
public class quick {
    static void show(int [] a){
        for(int i : a){
            System.out.println(i);
        }
    }

    static void exch(int [] a, int i, int j){
        int t = a[i];
        a[i] = a[j];
        a[j] = t;
    }

    static void quick(int []a, int low, int high){
        if(low >= high){
           return;
        }
        int key = a[low];
        int i=low;
        int j=high;

        while(i!=j){
            while(a[j]>=key &&i<j)
                j--;
            while(a[i] <= key && i<j)
                i++;
            if(i<j)
                exch(a,i,j);

        }

        exch(a,i,low);

        quick(a,low, i-1);
        quick(a,i+1, high);


    }

    static void sort(int [] a){
        quick(a, 0, a.length-1);
    }

    public static void main(String[] args) {
        int [] a = {2,3,4,1,5,9,8,6,7,0};
        sort(a);
        show(a);

    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值