直接插入排序(Direct insertion sort)原理:
在未排序序列中,构建一个子排序序列,直至全部数据排序完成
将待排序的数,插入到已经排序的序列中合适位置
增加一个哨兵,放入待比较值,让它和后面已经排好序的序列比较,找到合适的插入点
m_list = [1, 9, 8, 5, 6, 7, 4, 3, 2]
nums = [0] + m_list
sentiner, *origin = nums # 哨兵位,待比较数字
length = len(nums)
for i in range(2, length): # 从2开始
nums[0] = nums[i] # 放置哨兵
j = i - 1
if nums[j] > nums[0]: # 大数右移,找到插入位置
while nums[j] > nums[0]:
nums[j + 1] = nums[j] # 依次右移
j -= 1
nums[j + 1] = nums[0] # 将哨兵插入,注意插入在右侧要+1
print(nums)
使用在小规模数据比较
优点:如果比较操作耗时大的话,可以采用二分查找来提高效率,即二分查找插入排序