https://github.com/dxrcy/sorting
Terminal-based sorting algorithm visualizer
https://github.com/dxrcy/sorting
Last synced: 3 months ago
JSON representation
Terminal-based sorting algorithm visualizer
- Host: GitHub
- URL: https://github.com/dxrcy/sorting
- Owner: dxrcy
- License: gpl-3.0
- Created: 2024-03-29T02:14:18.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-09T23:47:36.000Z (about 1 year ago)
- Last Synced: 2025-03-15T08:37:17.692Z (3 months ago)
- Language: Rust
- Homepage:
- Size: 158 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sorting Algorithms
A terminal-based sorting algorithm visualizer, written in Rust.
Supported algorithms (defined in `src/sorts/`):
- Bubble sort
- Insertion sort
- Merge sort
- Quick sort
- Selection sort
- Shell sortAlgorithms must be written as an generator function (using the `generator` crate).
