InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is good for sorting arrays having less than 100 elements?(a) Quick Sort(b) Selection Sort(c) Merge Sort(d) Insertion SortI had been asked this question in class test.The origin of the question is Insertion sort in portion Sorting of Data Structures & Algorithms II |
|
Answer» CORRECT choice is (d) INSERTION SORT The best explanation: The insertion sort is good for sorting small ARRAYS. It sorts smaller arrays faster than any other sorting ALGORITHM. |
|