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

python 冒泡排序

时间:2016-10-12 16:34:26      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

#!/usr/bin/python # -*- coding: utf-8 -*-

array=[15,1,20,13,8] def bubble_sort(array):

    for i in range(len(array),0,-1):

      for j in range(len(array)-1):

         if array[j] > array[j+1]:

             tmp = array[j]

             array[j] = array[j+1]

             array[j+1] = tmp

    print("result: " + str(array))

bubble_sort(array)

print("bubble_sort success!!!")

python 冒泡排序

标签:

原文地址:http://www.cnblogs.com/lgqboke/p/5953221.html

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