An open API service indexing awesome lists of open source software.

https://github.com/nelsonbn/algorithms-data-structures-selection-sort

Algorithms and Data Structures - Selection Sort
https://github.com/nelsonbn/algorithms-data-structures-selection-sort

algorithms algorithms-and-data-structures data-structures

Last synced: 9 months ago
JSON representation

Algorithms and Data Structures - Selection Sort

Awesome Lists containing this project

README

          

# Algorithms and Data Structures - Selection Sort

## Characteristics

- Time complexity:
- Best: Ω(n^2)
- Average: Θ(n^2)
- Worst: O(n^2)
- Space complexity: O(1)
- In-place
- Unstable

## Demonstration
- [Algorithm Visualizer](https://algorithm-visualizer.org/brute-force/selection-sort)

## References
- [Other Algorithms & Data Structures](https://github.com/NelsonBN/algorithms-data-structures)