快速排序*^____^*

package Test01;

public class QuickSprt {

    public static void main(String[] args) {
        int[] arr = { 1, 3, 2, 9, 8, 7, 1, 0,0,2,3,3,1,0,101,100,1,1,001,100 }; // 要排序的数组
    

        QuickSort(arr);
        for (int i : arr) {
            System.out.print(i+"  ");
        }
    }

    public static void QuickSort(int[] arr) {
        if (arr == null || arr.length < 2) {
            return;
        } else {
            quickSort(arr, 0, arr.length - 1);
        }

    }

    public static void quickSort(int[] arr, int L, int R) {
        if (L < R) {
            int[] p = partition(arr, L, R);
            quickSort(arr, L, p[0] );
            quickSort(arr, p[1] , R);
        
        }
    }

    public static int[] partition(int[] arr, int L, int R) {
        int num = arr[(int) (Math .random()*(R-L+1)+L)];  //随机快排
        int less = L - 1;
        int more = R + 1;
        while (L < more) {
            if (arr[L] < num) {
                swap(arr, L++, ++less);

            } else if (arr[L] > num) {
                swap(arr, L, --more);

            } else {
                L++;
            }
        }
        return new int[] { less, more };

    }
    
    public static void swap(int arr[], int a, int b) {
        int temp = arr[a];
        arr[a] = arr[b];
        arr[b] = temp;

    }
}

转载于:https://www.cnblogs.com/superfly123/p/10530120.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值