从冒泡排序演化而来。
快速排序在每一轮挑选一个基准元素,并让其他比它大的元素移动到数列的一边,比它小的元素移动到数列的另一边,从而把数列拆解成两个部分。
这个思路就叫做分治法。
选定基准元素以后,我们要做的就是把其他元素中小于基准原色的都交换到基准元素的一边,大于基准元素的都交换到基准元素的另一边。
有两种实现方法
1.双边循环法
2.单边循环法
双边循环法代码示例:
/**
* @Author: subd
* @Date: 2019/8/20 8:37
*/
public class QuickSort {
public static void quickSort(int[] arr, int startIndex, int endIndex) {
//递归结束条件:startIndex大于或等于endIndex时
if (startIndex >= endIndex) {
return;
}
//得到基准元素位置
int pivotIndex = partition(arr, startIndex, endIndex);
//得到进准元素,分成两笔分进行递归排序。
quickSort(arr, startIndex, pivotIndex - 1);
quickSort(arr, pivotIndex + 1, endIndex);
}
/**
* 双边循环法
* @param arr
* @param startIndex
* @param endIndex
* @return
*/
private static int partition(int[] arr, int startIndex, int endIndex) {
//取第一个位置(也可以选择随机位置)的元素座位基准元素
int pivot = arr[startIndex];
int left = startIndex;
int right = endIndex;
while (left != right) {
//控制指针比较并左移
while (left < right && arr[right] > pivot) {
right--;
}
//控制left指针比较并右移
while (left < right && arr[left] <= pivot) {
left++;
}
//交换left和right指针所指向的元素
if (left < right) {
int p = arr[left];
arr[left] = arr[right];
arr[right] = p;
}
}
//pivot和指针重合点交换
arr[startIndex] = arr[left];
arr[left] = pivot;
return left;
}
public static void main(String[] args) {
int[] arr = new int[]{4, 4, 6, 5, 3, 2, 8, 1};
quickSort(arr, 0, arr.length - 1);
System.out.println(Arrays.toString(arr));
}
}
单边循环法代码示例:
/**
* @Author: subd
* @Date: 2019/8/21 7:55
*/
public class QuickSort2 {
public static void quickSort(int[] arr, int startIndex, int endIndex) {
//递归结束条件:startIndex大于或等于endIndex时
if (startIndex >= endIndex) {
return;
}
//得到基准元素位置
int pivotIndex = partition(arr, startIndex, endIndex);
//得到进准元素,分成两笔分进行递归排序。
quickSort(arr, startIndex, pivotIndex - 1);
quickSort(arr, pivotIndex + 1, endIndex);
}
/**
* 单边循环法
*
* @param arr
* @param startIndex
* @param endIndex
* @return
*/
private static int partition(int[] arr, int startIndex, int endIndex) {
//取第一个位置(也可以选择随机位置)的元素座位基准元素
int pivot = arr[startIndex];
int mark = startIndex;
for (int i = startIndex + 1; i <= endIndex; i++) {
if (arr[i] < pivot) {
mark++;
int p = arr[mark];
arr[mark] = arr[i];
arr[i] = p;
}
}
arr[startIndex] = arr[mark];
arr[mark] = pivot;
return mark;
}
public static void main(String[] args) {
int[] arr = new int[]{4, 4, 6, 5, 3, 2, 8, 1};
quickSort(arr, 0, arr.length - 1);
System.out.println(Arrays.toString(arr));
}
}
非递归代码示例:
/** * @Author: subd * @Date: 2019/8/21 8:05 */ public class QuickSort3 { public static void quickSort(int[] arr, int startIndex, int endIndex) { //用一个集合栈来代替递归的函数栈 Stack<Map<String, Integer>> quickSortStack = new Stack<>(); //整个数列的起止下标,一哈系的形式入栈 Map rootParam = new HashMap(); rootParam.put("startIndex", startIndex); rootParam.put("endIndex", endIndex); quickSortStack.push(rootParam); //循环结束条件:栈为空时 while (!quickSortStack.isEmpty()) { //栈顶元素出栈,得到起止下标 Map<String, Integer> param = quickSortStack.pop(); //得到基准元素位置 int pivotIndex = partition(arr, param.get("startIndex"), param.get("endIndex")); //根据基准元素分成两部分,把每一部分的起止下标入栈 if (param.get("startIndex") < pivotIndex - 1) { Map<String, Integer> leftParam = new HashMap<>(); leftParam.put("startIndex", param.get("startIndex")); leftParam.put("endIndex", pivotIndex - 1); quickSortStack.push(leftParam); } if (pivotIndex + 1 < param.get("endIndex")) { Map<String, Integer> rightParam = new HashMap<>(); rightParam.put("startIndex", pivotIndex + 1); rightParam.put("endIndex", param.get("endIndex")); quickSortStack.push(rightParam); } } } /** * 单边循环法 * * @param arr * @param startIndex * @param endIndex * @return */ private static int partition(int[] arr, int startIndex, int endIndex) { //取第一个位置(也可以选择随机位置)的元素座位基准元素 int pivot = arr[startIndex]; int mark = startIndex; for (int i = startIndex + 1; i <= endIndex; i++) { if (arr[i] < pivot) { mark++; int p = arr[mark]; arr[mark] = arr[i]; arr[i] = p; } } arr[startIndex] = arr[mark]; arr[mark] = pivot; return mark; } public static void main(String[] args) { int[] arr = new int[]{4, 7, 6, 5, 3, 2, 8, 1}; quickSort(arr, 0, arr.length - 1); System.out.println(Arrays.toString(arr)); } }