Python一行快速排序
Posted 石天放
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python一行快速排序相关的知识,希望对你有一定的参考价值。
quick_sort = lambda array: array if len(array) <= 1 else quick_sort([item for item in array[1:] if item <= array[0]]) + [array[0]] + quick_sort([item for item in array[1:] if item > array[0]])
以上是关于Python一行快速排序的主要内容,如果未能解决你的问题,请参考以下文章