InterviewSolution
Saved Bookmarks
| 1. |
Which of the following sorting algorithm is not a constituent of introsort?(a) selection sort(b) quicksort(c) insertion sort(d) heap sortintrosort knowledgeable people please answer. |
|
Answer» RIGHT answer is (a) selection sort Explanation: Introsort is a HYBRID sorting algorithm which means it USES more than one sorting algorithm as a routine. It may use quick sort or heap sort or INSERTION sort depending on the given situation. |
|