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

python 冒泡排序

时间:2018-04-05 22:03:53      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:for   int   blog   range   gpo   body   temp   div   turn   

def mopsort(li):
for i in range(1,len(li)):
for j in range(len(li)-1):
if li[j] > li[j+1]:
temp = li[j]
li[j] = li[j+1]
li[j+1] = temp
return li

temp = [333,24,76,45,1,9,65]

tempsort = mopsort(temp)
print(tempsort)

python 冒泡排序

标签:for   int   blog   range   gpo   body   temp   div   turn   

原文地址:https://www.cnblogs.com/wuxinyan/p/8724376.html

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