libgraph 0.1.0

A Rust crate providing a generic graph data structure and fundamental graph algorithms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! `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.

pub mod graph;
pub use graph::Graph;

pub mod algorithms;
pub use algorithms::dfs;
pub use algorithms::traverse_tree;