【2月8日刷题笔记】

今天是晴天 气温2度
目录

02代码
快速排序java实现
Lee_75:力扣
Lee_215:力扣
Lee_216:力扣
Lee_45:跳跃游戏力扣

02代码
快速排序java实现

public class SortK {

  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 = temp ){
              --j;
          }
          swap(arr,i,j);
          while (i

【2月8日刷题笔记】最先出现在Python成神之路

版权声明:
作者:ht
链接:https://www.techfm.club/p/16757.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>