- 快速排序简介
- 思路分析
- 代码实现
- 结果输出
快速排序是对冒泡排序的一种改进,通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据比另外一部分所有的数据都小,然后按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序列。
思路分析以{5,3,7,6,8,2,9}为例,我们这里以中间数6为基数进行快速排序(下面红色数字表示基数)
初始数据 {5,3,7,6,8,2,9}
第1轮划分后的数据 {5,3,2} 6 {8,7,9}
第2轮划分后的数据 {2} 3 {5} 6 {8,7,9}
第3轮划分后的数据 {2} 3 {5} 6 7 {8,9}
第3轮划分后的数据 {2} 3 {5} 6 7 8 {9}
有序序列{2,3,5,6,7,8,9}
public class QuickSort { public static void main(String[] args) { int[] array = {5,3,7,6,8,2,9}; quick(array,0,array.length-1); System.out.println(Arrays.toString(array)); } public static void quick(int[] array,int left,int right){ int l = left; int r = right; //基数 int pivot = array[(left+right)/2]; int temp; while(l结果输出pivot){ r--; } //找一个不小于基数的元素 while(array[l] l){ //递归调用排序右边部分 quick(array,l+1,right); } } }
[2, 3, 5, 6, 7, 8, 9] Process finished with exit code 0
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)