## 快速排序 QuickSort
* 空间复杂度:O(nLogN)
* 时间复杂度:O(nLogN)
## 思路描述
1. 先选择一个基准点p,以基准点p做分区操作(将比p小的数放到p的左边,比p大的数放到右边)
2. 然后递归在左边0到p-1的部分排序,sort(0,p-1)
3. 再递归排右边部分sort(p+1,len)
4. 如果left>=right,则退出
如下图:
![](https://box.kancloud.cn/71c0f1c0ceb0e053c423426e7f343602_811x252.gif)
## 例子
```
old:[13, 7, 4, 6, 9, 24]
partition: old=[13, 7, 4, 6, 9, 24]
partition: left=0,right=5,value=4,j=0,swapCount=2 [4, 7, 13, 6, 9, 24]
partition: old=[7, 13, 6, 9, 24]
partition: left=1,right=5,value=6,j=1,swapCount=2 [6, 13, 7, 9, 24]
partition: old=[13, 7, 9, 24]
partition: left=2,right=5,value=7,j=2,swapCount=2 [7, 13, 9, 24]
partition: old=[4, 6]
partition: left=0,right=1,value=4,j=0,swapCount=2 [4, 6]
partition: old=[13, 9, 24]
partition: left=3,right=5,value=9,j=3,swapCount=2 [9, 13, 24]
partition: old=[4, 6, 7]
partition: left=0,right=2,value=6,j=1,swapCount=3 [4, 6, 7]
partition: old=[13, 24]
partition: left=4,right=5,value=13,j=4,swapCount=2 [13, 24]
partition: old=[4, 6, 7, 9]
partition: left=0,right=3,value=6,j=1,swapCount=3 [4, 6, 7, 9]
partition: old=[7, 9]
partition: left=2,right=3,value=7,j=2,swapCount=2 [7, 9]
partition: old=[4, 6]
partition: left=0,right=1,value=4,j=0,swapCount=2 [4, 6]
result:[4, 6, 7, 9, 13, 24]耗时:5ms
```
## java实现
~~~
public class QuickSort {
public static void main(String[] args) {
Stopwatch sw = Stopwatch.createStarted();
int[] nums = {13,7,4,6,9,24};
System.out.println("old:"+ Arrays.toString(nums));
System.out.println("result:"+Arrays.toString(sort(nums))+"耗时:"+sw.elapsed(TimeUnit.MILLISECONDS)+"ms");
}
public static int[] sort(int[] nums){
quickSort(nums,0,nums.length-1);
return nums;
}
// 快速排序
public static void quickSort(int[] nums,int left,int right){
if(left >= right){
return ;
}
// 基准坐标,分区
int p = partition(nums,left,right);
// 递归排左边的
quickSort(nums,0,p-1);
// 递归排右边的
quickSort(nums,p+1,right);
}
// 对arr[l...r]部分进行partition操作
// 返回index, 使得arr[l...p-1] < arr[p] ; arr[p+1...r] > arr[p]
private static int partition(int[] nums, int left, int right) {
// 基准值
int[] newNums = Arrays.copyOfRange(nums,left,right+1);
int p = (left + right) / 2;
// 将基准值和left交换
int swapCount = 2;
swap(nums, left, p);
int value = nums[left];
int j = left;
for (int i = left + 1; i <= right; i++){
if (nums[i] < value) {
j++;
swap(nums, j, i);
swapCount ++;
}
}
swap(nums, left, j);
System.out.println("partition: old="+Arrays.toString(newNums));
int[] sortNums = Arrays.copyOfRange(nums,left,right+1);
System.out.println("partition: left="+left+",right="+right+",value=" + value + ",j=" + j + ",swapCount=" + swapCount + " " + Arrays.toString(sortNums));
return j;
}
// 交换数组下标
public static void swap(int[] nums,int i,int j){
int temp = nums[i];
nums[i] = nums[j];
nums[j] = temp;
}
}
~~~
- Redis来回摩擦
- redis的数据结构SDS和DICT
- redis的持久化和事件模型
- Java
- 从何而来之Java IO
- 发布Jar包到公共Maven仓库
- Java本地方法调用
- 面试突击
- Linux
- Nginx
- SpringBoot
- Springboot集成Actuator和SpringbootAdminServer监控
- SpringCloud
- Spring Cloud初识
- Spring Cloud的5大核心组件
- Spring Cloud的注册中心
- Spring Cloud注册中心之Eureka
- Spring Cloud注册中心之Consul
- Spring Cloud注册中心之Nacos
- Spring Cloud的负载均衡之Ribbon
- Spring Cloud的服务调用之Feign
- Spring Cloud的熔断器
- Spring Cloud熔断器之Hystrix
- Spring Cloud的熔断器监控
- Spring Cloud的网关
- Spring Cloud的网关之Zuul
- Spring Cloud的配置中心
- Spring Cloud配置中心之Config Server
- Spring Cloud Config配置刷新
- Spring Cloud的链路跟踪
- Spring Cloud的链路监控之Sleuth
- Spring Cloud的链路监控之Zipkin
- Spring Cloud集成Admin Server
- Docker
- docker日常基本使用
- docker-machine的基本使用
- Kubernetes
- kubernetes初识
- kubeadm安装k8s集群
- minikube安装k8s集群
- k8s的命令行管理工具
- k8s的web管理工具
- k8s的相关发行版
- k3s初识及安装
- rancher的安装及使用
- RaspberryPi
- 运维
- 域名证书更新
- 腾讯云主机组建内网
- IDEA插件开发
- 第一个IDEA插件hello ide开发
- 千呼万唤始出来的IDEA笔记插件mdNote
- 大刚学算法
- 待整理
- 一些概念和知识点
- 位运算
- 数据结构
- 字符串和数组
- LC242-有效的字母异位词
- 链表
- LC25-K个一组翻转链表
- LC83-删除有序单链表重复的元素
- 栈
- LC20-有效的括号
- 队列
- 双端队列
- 优先队列
- 树
- 二叉树
- 二叉树的遍历
- 二叉树的递归序
- 二叉树的前序遍历(递归)
- 二叉树的前序遍历(非递归)
- 二叉树的中序遍历(递归)
- 二叉树的中序遍历(非递归)
- 二叉树的后序遍历(递归)
- 二叉树的后序遍历(非递归)
- 二叉树的广度优先遍历(BFS)
- 平衡二叉树
- 二叉搜索树
- 满二叉树
- 完全二叉树
- 二叉树的打印(二维数组)
- 树的序列化和反序列化
- 前缀树
- 堆
- Java系统堆优先队列
- 集合数组实现堆
- 图
- 图的定义
- 图的存储方式
- 图的Java数据结构(邻接表)
- 图的表达方式及对应场景创建
- 图的遍历
- 图的拓扑排序
- 图的最小生成树之Prim算法
- 图的最小生成树之Kruskal算法
- 图的最小单元路径之Dijkstra算法
- 位图
- Java实现位图
- 并查集
- Java实现并查集
- 滑动窗口
- 单调栈
- 排序
- 冒泡排序BubbleSort
- 选择排序SelectSort
- 插入排序InsertSort
- 插入排序InsertXSort
- 归并排序MergeSort
- 快速排序QuickSort
- 快速排序优化版QuickFastSort
- 堆排序HeapSort
- 哈希Hash
- 哈希函数
- guava中的hash函数
- hutool中的hash函数
- 哈希表实现
- Java之HashMap的实现
- Java之HashSet的实现
- 一致性哈希算法
- 经典问题
- 荷兰国旗问题
- KMP算法
- Manacher算法
- Go