public class QuickSortByStack {
int[] array = new int[] {4, 3, 6, 8, 9, 1, 5, 2, 10};
public static void main(String[] args) {
QuickSortByStack quickSortByStack = new QuickSortByStack();
quickSortByStack.quickSort();
System.out.println(Arrays.toString(quickSortByStack.array));
}
public void quickSort() {
Stack<Map<String, Integer>> stack = new Stack<>();
Map<String, Integer> map = new HashMap<>();
map.put("startIndex", 0);
map.put("endIndex", array.length - 1);
stack.push(map);
while (!stack.isEmpty()) {
Map<String, Integer> popMap = stack.pop();
Integer startIndex = popMap.get("startIndex");
Integer endIndex = popMap.get("endIndex");
int pivotIndex = doQuickSort(array, startIndex, endIndex);
if (startIndex < pivotIndex - 1) {
HashMap<String, Integer> tempMap = new HashMap<>();
tempMap.put("startIndex", startIndex);
tempMap.put("endIndex", pivotIndex - 1);
stack.push(tempMap);
}
if (pivotIndex + 1 < endIndex) {
HashMap<String, Integer> tempMap = new HashMap<>();
tempMap.put("startIndex", pivotIndex + 1);
tempMap.put("endIndex", endIndex);
stack.push(tempMap);
}
}
}
private int doQuickSort(int[] array, Integer startIndex, Integer endIndex) {
int mark = startIndex;
int pivotData = array[startIndex];
for (int i = startIndex; i <= endIndex; i++) {
if (array[i] < pivotData) {
mark++;
int temp = array[i];
array[i] = array[mark];
array[mark] = temp;
}
}
array[startIndex] = array[mark];
array[mark] = pivotData;
return mark;
}
}
快排(非递归+单指针)
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 快排 快排的思想: 典型的分治,将数组分成两个子数组,并且分别对子数组排序,且子数组的排序也是分治。 快排和归并排...