Algorithms
Selection sort
Just going through left to right, finding the new minimum of the unsorted items, and swapping it with the left most unsorted item.
Insertion sort
Going from left to right, and moving the leftmost unsorted item one item left at a time until we hit the beginning ...