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: 10 days ago
JSON representation

algorithms and data structures implemented in rust

Lists

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.