InterviewSolution
Saved Bookmarks
| 1. |
What is selection sort? |
|
Answer» Selection sort is in-place sorting technique. It divides the data set into two sub-lists: sorted and unsorted. Then it selects the minimum element from unsorted sub-list and places it into the sorted list. This iterates unless all the elements from unsorted sub-list are consumed into sorted sub-list. |
|