Last Updated : 12 Dec, 2018

Quicksort is run on two inputs shown below to sort in ascending order taking first element as pivot

i) 1, 2, 3,......., n
ii) n, n-1, n-2,......, 2, 1 

Let C1 and C2 be the number of comparisons made for the inputs (i) and (ii) respectively. Then,

(A) C1 < C2 (B) C1 > C2
(C) C1 = C2
(D) We cannot say anything for arbitrary n


Answer: (C)

Explanation: Quick Sort is perform in worst case when input is sorted in either ascending order or descending order. So, quick sort will return equal number of comparisons for both given inputs.

Option (C) is correct.

Quiz of this Question


Share your thoughts in the comments