https://github.com/torifat/rust-algo
Different algorithms implemented in Rust for educational purpose.
https://github.com/torifat/rust-algo
Last synced: 3 months ago
JSON representation
Different algorithms implemented in Rust for educational purpose.
- Host: GitHub
- URL: https://github.com/torifat/rust-algo
- Owner: torifat
- Created: 2021-12-31T20:10:53.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-08T14:40:19.000Z (over 3 years ago)
- Last Synced: 2024-12-27T13:46:27.183Z (5 months ago)
- Language: Rust
- Size: 16.6 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Algorithms
Different algorithms implemented in Rust for educational purpose.
**Test**
```
$ cargo test -p binary-search
```**Benchmark**
```
$ cargo bench -p binary-search
```- [Binary Search](binary-search)
- [Selection Sort](sort/selection-sort)
- [Insertion Sort](sort/insertion-sort)
- [Merge Sort](sort/merge-sort)
- [Quick Sort](sort/quicksort)
- [Heap Sort](sort/heap-sort)