单选题

下面的C++代码实现对list的快速排序,有关说法,错误的是( )。

A.

qSort(less) + qSort(greater) + (vector<int>)pivot 

B.

(vector<int>)pivot + (qSort(less) + qSort(greater)) 

C.

(qSort(less) + (vector<int>)pivot + qSort(greater)) 

D.

qSort(less) + pivot + qSort(greater) 

发表评论

登录 后再回复