无编辑摘要 |
无编辑摘要 |
||
| 第33行: | 第33行: | ||
23333 | 23333 | ||
<syntaxhighlight lang="python" style="border: 3px dashed blue;"> | |||
def quick_sort(arr): | |||
less = [] | |||
pivot_list = [] | |||
more = [] | |||
if len(arr) <= 1: | |||
return arr | |||
else: | |||
pass | |||
</syntaxhighlight> | |||
Couldn't load preferences. Check your connection and try again.
无编辑摘要 |
无编辑摘要 |
||
| 第33行: | 第33行: | ||
23333 | 23333 | ||
<syntaxhighlight lang="python" style="border: 3px dashed blue;"> | |||
def quick_sort(arr): | |||
less = [] | |||
pivot_list = [] | |||
more = [] | |||
if len(arr) <= 1: | |||
return arr | |||
else: | |||
pass | |||
</syntaxhighlight> | |||