第14421题 单选题
有关以下Python实现的qSort()排序函数的说法,正确的是哪个?
def qSort(lst):
    if len(lst) <= 1:
        return lst
    else:
        Pivot = lst[0]
        Less = [x for x in lst[1:] if x <= Pivot]
        Greater = [x for x in lst[1:] if x > Pivot]
        return qSort(Less) + [Pivot] + qSort(Greater)

lstA = [1,2,11,12,21,21,2,3,41,4,3]
lstB = qSort(lstA)
print(lstA,lstB)
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析