服务器之家

服务器之家 > 正文

python插入排序算法实例分析

时间:2020-07-19 10:43     来源/作者:Python教程网

本文实例讲述了python插入排序算法。分享给大家供大家参考。具体如下:

?
1
2
3
4
5
6
7
8
def insertsort(array):
  for removed_index in range(1, len(array)):
    removed_value = array[removed_index]
    insert_index = removed_index
    while insert_index > 0 and array[insert_index - 1] > removed_value:
      array[insert_index] = array[insert_index - 1]
      insert_index -= 1
    array[insert_index] = removed_value

另外一个版本:

?
1
2
3
4
5
6
7
8
def insertsort(array):
  for lastsortedelement in range(len(array)-1):
    checked = lastsortedelement
    while array[checked] > array[lastsortedelement + 1] and checked >= 0:
      checked -= 1
    #Insert the number into the correct position
    array[checked+1], array[checked+2 : lastsortedelement+2] = array[lastsortedelement+1], array[checked+1 : lastsortedelement+1]
  return array

希望本文所述对大家的Python程序设计有所帮助。

相关文章

热门资讯

2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国 2021-05-08
返回顶部