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
- Host: GitHub
- URL: https://github.com/nelsonbn/algorithms-data-structures-selection-sort
- Owner: NelsonBN
- License: mit
- Created: 2024-03-12T20:23:54.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-02T13:30:29.000Z (9 months ago)
- Last Synced: 2025-03-02T14:28:49.467Z (9 months ago)
- Topics: algorithms, algorithms-and-data-structures, data-structures
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)