【2月8日刷题笔记】
今天是晴天 气温2度
目录
02代码
快速排序java实现
Lee_75:力扣
Lee_215:力扣
Lee_216:力扣
Lee_45:跳跃游戏力扣
02代码
快速排序java实现
public class SortK { 【2月8日刷题笔记】最先出现在Python成神之路。
public void quickSort(int[] arr,int start ,int end){
if (start >= end ) return;
int temp = arr[start];
int i = start; int j = end;
while (i != j){
while (i
--j;
}
swap(arr,i,j);
while (i
共有 0 条评论