public class Demoquicksort {
public static void main(String[] args) {
//new数组并存入若干无序整数
int[] array = {33, 22, 88,77,99,55,100,100,0};
//执行快速排序
quicksort(array,0,array.length-1);
//输出验证
for (int i = 0; i < array.length; i++) {
System.out.print(array[i]+" ");
}
}
private static void quicksort(int[] array, int start, int end) {
//把start和end分别赋值给i和j,让i和j执行快排左右扫描。保留start和end的初始值。
int i = start;
int j = end;
//关键,否则会有*异常
if (i >= j) {
return;
}
//以每组快排的第一个数为基准并储存起来
int pivot = array[i];
//左右遍历快排数组
while (i<j){
while (array[j]>=pivot&&i<j) {
j--;
}
if (i==j)
{
break;
}
array[i] = array[j];
while (array[i] < pivot && i < j) {
i++;
}
if (i==j)
{
break;
}
array[j] = array[i];
}
array[i] = pivot;
quicksort(array,start,i-1);
quicksort(array,i+1, end);
}
}
相关文章
- 12-07如何快速掌握Sportisimo EDI项目中的ORDERS报文?
- 12-07BeanShell-java脚本
- 12-07Luogu P3149 排序(树状数组、前缀和)
- 12-07LeetCode:21_Merge Two Sorted Lists | 合并两个排序列表 | Easy
- 12-07六种内排序
- 12-07spring-boot-plus是易于使用,快速,高效,功能丰富,开源的spring boot 脚手
- 12-0783. 删除排序链表中的重复元素
- 12-07electron集成Java服务端制作windows安装包
- 12-07kbengine里如何使用git快速下载项目?
- 12-07Mybatis-plus 快速开发 超级全面的总结包括高级查询