Stats
Implementations
Selection Sort is a simple comparison-based sorting algorithm that divides the input list into a sorted and an unsorted region. It repeatedly selects the smallest (or largest) element from the unsorted region and moves it to the end of the sorted region.
Paradigm
Selection
Author
Unknown
Tier
CTime Complexity
Best
O(n^2)Avg
O(n^2)Worst
O(n^2)Space
O(1)Properties