首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
打怪录专题
LC打怪录 912.排序数组
1.3 插入排序 | 菜鸟教程 def insertionSort(arr):for i in range(len(arr)):preIndex = i-1current = arr[i]while preIndex >= 0 and arr[preIndex] > current:arr[preIndex+1] = arr[preIndex]preIndex-=1arr[preIndex+1]
阅读更多...