
Selection Sort in a nutshell — how, when & where
Selection sort is one of the easiest sorting algorithms to understand. In part,
because there is minimal complexity. However, simplicity does come with its
pitfalls.
Here is a quick low down on what selection sort is, how to write one, when and
where you’d most likely encounter it.
How