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

Python写个Bubble排序

时间:2014-10-04 17:50:26      阅读:443      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   ar   for   sp   div   

bubuko.com,布布扣
 1 #-*-coding:utf-8-*-
 2 def bubble(array):
 3     flag = True;
 4     for i in range(len(array)-1,0,-1):#从后往前比较
 5         #print ‘i = ‘,i 
 6         if flag:
 7             flag = False
 8             for j in range(i):
 9                 #print ‘j ===== ‘,j
10                 if array[j] > array[j+1]:
11                     array[j],array[j+1] = array[j+1],array[j]
12                     flag = True
13             #print array[j]
14         else:
15             break
16     print array
17 array=[21,44,2,45,33,4,3,67]
18 bubble(array)
View Code

 

Python写个Bubble排序

标签:style   blog   http   color   os   ar   for   sp   div   

原文地址:http://www.cnblogs.com/sxmcACM/p/4006058.html

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