matthewsamuel95 / ACM-ICPC-Algorithms

Algorithms used in Competitive Programming
2.07k stars 1.26k forks source link

selection sort cpp #983

Closed chronos25 closed 5 years ago

chronos25 commented 5 years ago

Worst complexity: n^2 Average complexity: n^2 Best complexity: n^2

chronos25 commented 5 years ago

selection sort is a sorting algorithm that performs worse than the similar insertion sort.