Skip to content

Latest commit

 

History

History

README.md

Sorting Algorithms

Selection Sort

In-place comparision sort which finds the minimum value, swaps it with the value in the first position, repeats for every other item in list.Considered as an application of brute force

Merge Sort