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

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.

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)