wolf-graph 0.1.0

Data structures and algorithms for working with graphs with reference or value semantics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod dfs_visitor;
pub use dfs_visitor::DFSVisitor;

mod depth_first_search;
pub use depth_first_search::DepthFirstSearch;

mod topological_sort;
pub use topological_sort::TopologicalSort;

mod path_exists;
pub use path_exists::PathExists;

mod is_tree;
pub use is_tree::IsTree;