Skip to content

Latest commit

 

History

History
8 lines (4 loc) · 243 Bytes

File metadata and controls

8 lines (4 loc) · 243 Bytes

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