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

python快速排序

时间:2017-05-19 23:58:22      阅读:365      评论:0      收藏:0      [点我收藏+]

标签:logs   pop   isp   pytho   array   span   open   one   less   

技术分享
 1 def quicksort(array):
 2     less, greater = [], []
 3    if len(array)<=1:
 4         return array
 5    elem = array.pop()
 6    for i in array:
 7        if i <= elem:
 8             less.append(i)
 9        else: greater.append(i)
10    return quicksort(less) + [elem] + quicksort(greater)
View Code

 

python快速排序

标签:logs   pop   isp   pytho   array   span   open   one   less   

原文地址:http://www.cnblogs.com/lowseasonwind/p/6880554.html

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