Selection Sort
The selection sort algorithm works by selecting the smallest value in the unsorted portion of the array then swapping it with the first value of the unsorted portion of the array.
Selection sort animation: http://cathyatseneca.github.io/DSAnim/web/selection.html
Last updated