Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xcaptain/rust-algorithms
algorithms and data structures implemented in rust
https://github.com/xcaptain/rust-algorithms
algorithms rust
Last synced: 5 days ago
JSON representation
algorithms and data structures implemented in rust
- Host: GitHub
- URL: https://github.com/xcaptain/rust-algorithms
- Owner: xcaptain
- Created: 2017-10-09T16:01:16.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-08-09T16:49:58.000Z (over 2 years ago)
- Last Synced: 2024-08-03T09:12:27.524Z (4 months ago)
- Topics: algorithms, rust
- Language: Rust
- Homepage:
- Size: 336 KB
- Stars: 19
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rust algorithms and data structures
![github actions](https://github.com/xcaptain/rust-algorithms/workflows/build/badge.svg)
[![codecov](https://codecov.io/gh/xcaptain/rust-algorithms/branch/master/graph/badge.svg)](https://codecov.io/gh/xcaptain/rust-algorithms)This project is about my journey on algorithm study, practice makes a better programmer, keep going!
## project structure
### algorithms
Basic algorithms
### data structures
Basic data structures
### leetcode
Solutions for [leetcode](https://leetcode-cn.com/)
### codeforces
Solutions for [codeforces](https://codeforces.com/)
## how to build
using `cargo build` to build the whole project or `cargo build -p data-structures` build a workspace
## how to test
`cargo test`
I use `vscode` and `rust-analyzer` and `lldb` to write these code.