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

python选择排序

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

标签:python   选择排序   

def select_sort(list):
	for i in range(len(list)):
		position = i
		for j in range(i,len(list)):
			if list[position] > list[j]:
				position = j
		temp = list[i]
		list[i] = list[position]
		list[position] = temp
list = [4,4,11,23,4,5,7,9,0,111]

select_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/38514979

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