码迷,mamicode.com
首页 > 编程语言 > 详细

python插入排序

时间:2014-08-12 17:25:24      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:插入排序   python   

def insert_sort(list):
	for i in range(len(list)):
		while i > 0 and list[i] < list[i-1]:
			temp = list[i]
			list[i] = list[i-1]
			list[i-1] = temp
			i = i-1
list = [4,4,11,23,4,5,7,9,0,111]

insert_sort(list)

list

[0, 4, 4, 4, 5, 7, 9, 11, 23, 111]


python插入排序,布布扣,bubuko.com

python插入排序

标签:插入排序   python   

原文地址:http://blog.csdn.net/ilovezhangxian/article/details/38515157

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!