cover of episode Selection Sort

Selection Sort

2020/5/22
logo of podcast Programmers Quickie

Programmers Quickie

Frequently requested episodes will be transcribed first

Shownotes Transcript

In computer science, selection sort is an in-place comparison sorting algorithm. It has an O(n²) time complexity, which makes it inefficient on large lists, and generally performs worse than the similar insertion sort