recollection

Version License: MIT

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

toml [dependencies] recollection = "^0.1"

Usage

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); ```

Further Info

Author

👤 Chris P