我估计你在做基础测试题吧。
其实你看看数据结构的书说的拿些,冒泡啊,选择什么都统称快速排序。
我这里有个真正的快排程序。理论我就不说了,你应该有书看。你可以看看
class Demo {
public int getMiddle(Integer[] list, int low, int high) {
int tmp = list[low]; //数组的第一个作为中轴
while (low < high) {
while (low < high && list[high] > tmp) {
high--;
}
list[low] = list[high]; //比中轴小的记录移到低端
while (low < high && list[low] < tmp) {
low++;
}
list[high] = list[low]; //比中轴大的记录移到高端
}
list[low] = tmp; //中轴记录到尾
return low; //返回中轴的位置
}
public void _quickSort(Integer[] list, int low, int high) {
if (low < high) {
int middle = getMiddle(list, low, high); //将list数组进行一分为二
_quickSort(list, low, middle - 1); //对低字表进行递归排序
_quickSort(list, middle + 1, high); //对高字表进行递归排序
}
}
public void quick(Integer[] str) {
if (str.length > 0) { //查看数组是否为空
_quickSort(str, 0, str.length - 1);
}
}
public static void main(String[] args) {
Integer[] list={34,3,53,2,23,7,14,10};
Demo qs=new Demo();
qs.quick(list);
for(int i=0;i<list.length;i++){
System.out.print(list+" ");
}
System.out.println();
}
}
|