public class QuickSortDemo {
public static void main(String[] args) {
int[] array = {9, 6, 7, 6, 5, 4, 3, 2, 6, 0};
printArray(array);
quickSort(array);
printArray(array);
}
private static void quickSort(int[] array) {
if (Objects.isNull(array) || array.length == 1) {
return;
}
arrayPartQuickSort(array, 0, array.length - 1, 0);
}
private static void arrayPartQuickSort(int[] array, int startIndex, int endIndex, int baseIndex) {
if (endIndex - startIndex < 1) {
return;
}
int tempStartIndex = startIndex;
int tempEndIndex = endIndex;
int tempBaseValue = array[baseIndex];
int tempStartValue;
int tempEndValue;
while (true) {
while(true) {
tempEndValue = array[tempEndIndex];
if (tempEndValue < tempBaseValue) {
break;
}
if (tempEndIndex > tempStartIndex) {
tempEndIndex --;
} else {
break;
}
}
while(true) {
tempStartValue = array[tempStartIndex];
if (tempStartValue > tempBaseValue) {
break;
}
if (tempStartIndex < tempEndIndex) {
tempStartIndex ++;
} else {
break;
}
}
if (tempStartIndex == tempEndIndex) {
break;
}
int swapValueTemp = array[tempEndIndex];
array[tempEndIndex] = array[tempStartIndex];
array[tempStartIndex] = swapValueTemp;
}
int swapValueTemp = array[baseIndex];
array[baseIndex] = array[tempEndIndex];
array[tempEndIndex] = swapValueTemp;
arrayPartQuickSort(array, startIndex, tempEndIndex - 1, startIndex);
arrayPartQuickSort(array, tempEndIndex + 1, endIndex, tempEndIndex + 1);
}
private static void printArray(int[] array) {
if (Objects.isNull(array)) {
System.out.println(array);
}
for (int item : array) {
System.out.print(item + " ");
}
System.out.println();
}
}
快速排序
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 选择排序 对于任何输入,时间为O(n*n); 冒泡排序 最优(对于升序的数组,因为加入了一个跳出判断):O(n),...
- 欢迎探讨,如有错误敬请指正 如需转载,请注明出处http://www.cnblogs.com/nullzx/ 1....
- 给定数组 int[] arr = {3,6,8,4,7,5,9,1,2,0};使用至少三种方法对数组arr排序(作...
- 用Objective-C实现几种基本的排序算法,并把排序的过程图形化显示。其实算法还是挺有趣的 ^ ^. 选择排序...