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
| /** * 快速排序(非递归版) */ private static void quickSortByNotRecursive(int[] arr) { Stack<Integer> stack = new Stack<>(); stack.push(arr.length - 1); stack.push(0);
while (!stack.isEmpty()) { Integer newStart = stack.pop(); Integer newEnd = stack.pop();
int partition = partition(arr, newStart, newEnd); if (newStart < partition - 1) { stack.push(partition - 1); stack.push(newStart); } if (partition + 1 < newEnd) { stack.push(newEnd); stack.push(partition + 1); } } }
/** * 快速排序(递归版) */ private static void quickSortByRecursive(int[] arr, int start, int end) { if (start >= end) { return; }
int partIndex = partition(arr, start, end);
quickSortByRecursive(arr, start, partIndex - 1); quickSortByRecursive(arr, partIndex + 1, end); }
/** * 分区算法 */ private static int partition(int[] arr, int start, int end) { if (start < end) { int pivot = arr[start]; while (start < end) { while (start < end && arr[end] >= pivot) end--; arr[start] = arr[end]; while (start < end && arr[start] <= pivot) start++; arr[end] = arr[start]; }
arr[start] = pivot; } return start; }
|