Let's begin!
Selection Sort is a Sorting Algorithm which has two parts:
- Find the minimum element in the list within the given range.
- Swapping the present element with the present minimum element.
One function will returns the smallest element's index within the given range and another element will swap the element with minimum element.
Comments
Post a Comment