How does selection sort work?
3 years ago
Data Structure and Algorithm
Selection sort works by picking the smallest number from the list and placing it at the front. This process is repeated for the second position towards the end of the list. It is the simplest sort algorithm.

Sujan Bk
Jan 9, 2022