forked from DreamCats/java-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuickSort.java
More file actions
63 lines (51 loc) · 1.8 KB
/
QuickSort.java
File metadata and controls
63 lines (51 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import java.util.Arrays;
/**
* @program JavaBooks
* @description: 快速排序
* @author: mf
* @create: 2019/08/11 21:55
*/
/*
- 从数列中挑出一个元素,称为"基准";
- 重新排序数列,所有元素比基准值小的摆放在基准前面,所有元素比基准值大的摆在基准的后面(相同的数可以放到任一边)。
在这个分区退出之后,该基准就处于数列的中间位置。这个称为分区操作;
- 递归地把小于基准值元素的子数列和大于基准值元素的子数列排序;
*/
public class QuickSort {
public static void main(String[] args) {
int[] arr = {9, 10, 8, 3, 6};
System.out.println(Arrays.toString(arr));
int[] resArr = quickSort(arr);
System.out.println(Arrays.toString(resArr));
}
public static int[] quickSort(int[] sourceArr) {
int[] arr = Arrays.copyOf(sourceArr, sourceArr.length);
return quickSort(arr, 0, arr.length - 1);
}
public static int[] quickSort(int[] arr, int left, int right) {
if (left < right) {
int partitionIndex = partition(arr, left, right);
// 左半部分递归
quickSort(arr, left, partitionIndex - 1);
// 右半部分递归
quickSort(arr, partitionIndex + 1, right);
}
return arr;
}
public static int partition(int[] arr, int left, int right) {
int pivot = left;
int index = pivot + 1;
for (int i = index; i <= right; i++) {
if (arr[i] < arr[pivot]) {
swap(arr, i, index++);
}
}
swap(arr, pivot, index - 1);
return index - 1;
}
public static void swap(int[] arr, int i, int j) {
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}