快速排序的实现

import java.util.Random;

public class QuickSort {

	private static final int ARR_SIZE = 10;

	public static void main(String[] args) {

		Random rd = new Random();
		int arr[] = new int[ARR_SIZE];
		for (int i = 0; i < arr.length; i++) {
			arr[i] = rd.nextInt(100);
		}
		System.out.println("before sorting arr is:");

		display(arr);
		sort(arr);

		System.out.println("after sorting arr is:");
		display(arr);

	}

	private static void sort(int[] arr) {

		if (arr.length > 0)
			quickSort(arr, 0, arr.length - 1);
	}

	private static void quickSort(int[] arr, int low, int high) {

		if (low < high) { // 长度大于1
			int pivotLoc = partition(arr, low, high);// 将数组一分为二
			quickSort(arr, low, pivotLoc - 1); // 对低子数组递归排序
			quickSort(arr, pivotLoc + 1, high);// 对高子数组递归排序
		}

	}

	private static int partition(int[] arr, int low, int high) {

		int pivotVal = arr[low]; // 用数组的第一个元素作枢轴
		while (low < high) { // 从数组的两端交替地向中间扫描
			while (low < high && arr[high] >= pivotVal)
				high--;
			swap(arr, low, high); // 将比枢轴小的元素移动到低端
			while (low < high && arr[low] <= pivotVal)
				low++;
			swap(arr, low, high);// 将比枢轴大的元素移动到高端
		}

		return low; // 返回枢轴所在的位置
	}

	private static void swap(int[] arr, int low, int high) {

		int temp = arr[low];
		arr[low] = arr[high];
		arr[high] = temp;

	}

	private static void display(int[] arr) {

		for (int i = 0; i < arr.length; i++) {
			System.out.print(arr[i] + " ");
		}

		System.out.println();
	}

}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值