下面的Python代码实现对 list 的快速排序,有关说法,错误的是( )。
qSort(less) + qSort(greater) + [pivot]
[pivot] + qSort(less) + qSort(greater)
qSort(less) + [pivot] + qSort(greater)
qSort(less) + pivot + qSort(greater)