算法——快速排序
package com.jiucaiyuan.net.algrithm.sort;
/**
* <pre>
* 快速排序
* 一个数组arr,选择一个数做为基准m,小于等于m的数放在数组左边,大于m的数放在数组右边
* 左侧递归上述过程
* 右侧递归上述过程
*
* 荷兰国旗问题: <m,=m,>m
*
* 时间复杂度 O(N*logN),空间复杂度 O(logN)
* 如果选择的基准数比较偏时,时间复杂度O(N^2) 空间复杂度O(N)
* </pre>
* Created by jiucaiyuan on 2022/3/5.
*/
public class QuickSort {
/**
* 快速排序算法
* @param arr
* @param l
* @param r
* @return
*/
public static void quickSort(int[] arr,int l,int r){
if(l<r){
swap(arr,l+(int)(Math.random()*(r-l+1)),r);
//分成左右两块,左侧比某个数小,右侧比某个数大
int[] p = partition(arr,l,r);
//对左侧进行快排
quickSort(arr,l,p[0]);
//对右侧进行快排
quickSort(arr,p[1],r);
}
}
/*
* 对数组进行分区:左侧比
* @param arr 数组
* @param l 左元素
* @param r 右元素
* @return 小于某个数的有边界和大于某个数的左边界下标
*/
private static int[] partition(int[] arr, int l, int r) {
if(arr == null || arr.length<2){
return new int[]{l,l};
}
//小于基准数的右边界
int less = l-1;
//大于基准数的左边界
int more = r;
while(l<more){
if(arr[l]<arr[r]){
swap(arr,++less,l++);
}else if (arr[l] == arr[r]){
l++;
}else{
swap(arr,l,--more);
}
}
return new int[]{less,more};
}
/**
* 交换两个不相等的数,如果相等,会都变成0
* @param arr
* @param l
* @param r
*/
private static void swap(int[] arr,int l,int r){
if(l==r){
return;
}
//交换两个不同数
arr[l] = arr[l]^arr[r];
arr[r] = arr[l]^arr[r];
arr[l] = arr[l]^arr[r];
}
public static void main(String[] args){
int[] arr = {12,5,3,7,3,8,4,3,2,2,6,8,6,0,9,5,3};
print(arr);
quickSort(arr, 0,arr.length-1);
print(arr);
}
private static void print(int[] arr) {
if(arr == null ){
return;
}
for(int a : arr){
System.out.print(a+"\t");
}
System.out.println();
}
}
日历
个人资料
diaba 寻求合作请留言或联系mail: services@jiucaiyuan.net
链接
最新文章
存档
- 2025年4月(17)
- 2025年3月(25)
- 2025年2月(20)
- 2025年1月(2)
- 2024年10月(1)
- 2024年8月(2)
- 2024年6月(4)
- 2024年5月(1)
- 2023年7月(1)
- 2022年10月(1)
- 2022年8月(1)
- 2022年6月(11)
- 2022年5月(6)
- 2022年4月(33)
- 2022年3月(26)
- 2021年3月(1)
- 2020年9月(2)
- 2018年8月(1)
- 2018年3月(1)
- 2017年3月(3)
- 2017年2月(6)
- 2016年12月(3)
- 2016年11月(2)
- 2016年10月(1)
- 2016年9月(3)
- 2016年8月(4)
- 2016年7月(3)
- 2016年6月(4)
- 2016年5月(7)
- 2016年4月(9)
- 2016年3月(4)
- 2016年2月(5)
- 2016年1月(17)
- 2015年12月(15)
- 2015年11月(11)
- 2015年10月(6)
- 2015年9月(11)
- 2015年8月(8)
分类
热门文章
- SpringMVC:Null ModelAndView returned to DispatcherServlet with name 'applicationContext': assuming HandlerAdapter completed request handling
- Mac-删除卸载GlobalProtect
- java.lang.SecurityException: JCE cannot authenticate the provider BC
- MyBatis-Improper inline parameter map format. Should be: #{propName,attr1=val1,attr2=val2}
- Idea之支持lombok编译
标签
最新评论
- logisqykyk
Javassist分析、编辑和创建jav... - xxedgtb
Redis—常见参数配置 - 韭菜园 ... - wdgpjxydo
SpringMVC:Null Model... - rllzzwocp
Mysql存储引擎MyISAM和Inno... - dpkgmbfjh
SpringMVC:Null Model... - tzklbzpj
SpringMVC:Null Model... - bqwrhszmo
MyBatis-Improper inl... - 乐谱吧
good非常好 - diaba
@diaba:应该说是“时间的度量依据”... - diaba
如果速度增加接近光速、等于光速、甚至大于...
最新微语
- 在每件事情上花费的东西,就是生命的一部分,而我们花费的这些东西要求立即得到回报,或者在一个长时间以后得到回报。
2025-01-23 15:46
- 诺曼·文森特说:“并不是你认为自己是什么样的人,你就是什么样的人。但是你的思想是什么样,你就是什么样的人。”
2025-01-23 15:44
- 从今天起,做一个幸福的人。喂马,砍柴,(思想)周游世界
2022-03-21 23:31
- 2022.03.02 23:37:59
2022-03-02 23:38
- 几近崩溃后,找到解决方法,总是那么豁然开朗!所以遇到问题要坚持!
2018-07-18 10:49

发表评论: