当前位置:天才代写 > tutorial > Python教程 > python 快速排序python实现。

python 快速排序python实现。

2018-05-17 08:00 星期四 所属: Python教程 浏览:466

python">def quickSort(arg):
    if(arg==[]): return []
    return quickSort([i for i in arg[1:] if i<=arg[0]])+[arg[0]]+quickSort([i for i in arg[1:] if i>arg[0]])
print quickSort([12,14,25,23,2,17,13,25,34,777])

超级"简短"的python实现的快速排序。我很喜欢这个代码,因为它很纯,很纯。

标签:python

 

    关键字:

天才代写-代写联系方式