Expand description
libgraph is a Rust library providing a generic graph data structure and fundamental graph algorithms.
It supports undirected graphs with optional metadata associated with edges, and includes various graph generation methods as well as common traversal algorithms like Depth-First Search.
Re-exports§
pub use graph::Graph;pub use algorithms::dfs;pub use algorithms::traverse_tree;