InterviewSolution
Saved Bookmarks
| 1. |
Consider the Quick sort algorithm which sorts elements in ascending order using the first element as pivot. Then which of the following input sequence will require a maximum number of comparisons when this algorithm is applied on it?(a) 22 25 56 67 89(b) 52 25 76 67 89(c) 22 25 76 67 50(d) 52 25 89 67 76This question was addressed to me in examination.Enquiry is from Quicksort in section Sorting of Data Structures & Algorithms II |
|
Answer» Right OPTION is (a) 22 25 56 67 89 |
|