编程语言
首页 > 编程语言> > 数据结构--排序--直接插入(python)

数据结构--排序--直接插入(python)

作者:互联网

。。。

 1 def insertSort(nums):
 2     length = len(nums)
 3     for i in range(1,length):
 4         x = nums[i]
 5         for j in range(i,-1,-1):
 6             if x < nums[j-1]:
 7                 nums[j] = nums[j-1]
 8             else:
 9                 break
10         nums[j] = x
11     return nums

标签:11,10,nums,python,直接插入,range,length,数据结构
来源: https://www.cnblogs.com/NPC-assange/p/11452600.html