implementations and re-implementations of common data structures and algorithms in rust very much so a work in progress in its infant stage
🏠 Homepage
Install
- Add to your
Cargo.tomldependencies:
[]
= "^0.1"
Usage
- Example for graph (currently the only implemented, or part-implemented, data structure)
use Graph;
let g = new;
let p1 = g.add;
let p2 = g.add;
let p1_p2 = g.add_edge;
g.remove_edge;
g.remove;
Further Info
Author
👤 Chris P
- Website: https://clp.is
- Twitter: @clp_is
- Github: @clpi