InterviewSolution
Saved Bookmarks
| 1. |
Library sort is a modified version of which of the following sorting algorithm?(a) Bubble sort(b) selection sort(c) insertion sort(d) quick sortI got this question in final exam.I'm obligated to ask this question of Sorting in section Sorting of Data Structures & Algorithms II |
|
Answer» CORRECT choice is (c) INSERTION sort To EXPLAIN: LIBRARY sort requires the use of Insertion sort and BINARY search in its code. So it is a modified version of insertion sort. |
|