Home  >  Article  >  Backend Development  >  python 快速排序代码

python 快速排序代码

WBOY
WBOYOriginal
2016-06-06 11:26:411053browse

代码如下:


def quick_sort(ls):
return [] if ls == [] else quick_sort([y for y in ls[1:] if y = ls[0]])

if __name__ == '__main__':
l1 = [3,56,8,1,34,56,89,234,56,231,45,90,33,66,88,11,22]
l2 = quick_sort(l1)
print l1
print l2


注意:quick_sort函数中的代码是在一行里面的
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn