Python 插入排序 耗子 收录于 刷题 2022-12-06 约 158 字 预计阅读 1 分钟 插入排序(英语:Insertion Sort)是一种简单直观的排序算法。它的工作原理是通过构建有序序列,对于未排序数据,在已排序序列中从后向前扫描,找到相应位置并插入。1 插入排序 1 2 3 4 5 6 7 8 9 def insertionSort(arr): for i in range(1, len(arr)): key = arr[i] j = i - 1 while j >= 0 and key < arr[j]: arr[j+1] = arr[j] j -= 1 arr[j+1] = key return arr Python 插入排序 ↩︎ Please enable JavaScript to view the comments powered by Gitalk.