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

python 算法

时间:2018-05-07 00:44:57      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:ESS   快速   快速排序算法   算法   pytho   less   class   gre   python   

快速排序算法

1. 把array =[9,5,12,4,63,1,3,5,6,15,32] 按照从小到大排序

def quicksort(array):
    if len(array) < 2:
        return array
    else:
        pivot = array[0]
        less = [i for i in array[1:] if i <= pivot]
        greater = [i for i in array[1:] if i > pivot]
        return quicksort(less) + [pivot] + quicksort(greater)

  

python 算法

标签:ESS   快速   快速排序算法   算法   pytho   less   class   gre   python   

原文地址:https://www.cnblogs.com/chenxinming-top/p/9000380.html

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