Suppose we are sorting an array of eight integers using quick-03518
Suppose we are sorting an array of eight integers using quick sort, and we have just finished the first partitioning with the array looking like this:<br>2 5 1 7 9 12 11 10<br>Which statement is correct?
This multiple choice question (MCQ) is related to the book/course vu cs301 Data Structures. It can also be found in vu cs301 Mid Term - Quiz No.1.
Suppose we are sorting an array of eight integers using quick sort, and we have just finished the first partitioning with the array looking like this:
2 5 1 7 9 12 11 10
Which statement is correct?
2 5 1 7 9 12 11 10
Which statement is correct?
The pivot could be either the 7 or the 9.
The pivot could be the 7, but it is not the 9.
The pivot is not the 7, but it could be the 9.
Neither the 7 nor the 9 is the pivot.