implementations and re-implementations of common data structures and algorithms in rust very much so a work in progress in its infant stage
Cargo.toml
dependencies:toml
[dependencies]
recollection = "^0.1"
let g = Graph::<&'static str, usize>::new();
let p1 = g.add("Person 1"); let p2 = g.add("Person 2");
let p1p2 = g.addedge(p1, p2, 4 as usize);
g.removeedge(p1p2); g.remove(p1); ```
👤 Chris P