“Test”的版本间的差异
来自Labplus盛思维基百科
小 |
小 |
||
第2行: | 第2行: | ||
* [[ labplus软件安装指南]] | * [[ labplus软件安装指南]] | ||
{{111}} | {{111}} | ||
− | < | + | <syntaxhighlight lang="python" line='line'> |
− | + | def quickSort(arr): | |
− | + | less = [] | |
− | + | pivotList = [] | |
− | + | more = [] | |
− | + | if len(arr) <= 1: | |
− | + | return arr | |
− | + | else: | |
− | </ | + | pass |
+ | </syntaxhighlight> |
2018年3月8日 (四) 17:40的版本
def quickSort(arr):
less = []
pivotList = []
more = []
if len(arr) <= 1:
return arr
else:
pass