A graph library for Rust.
Gamma provides primitives and traversals for working with graphs. It is based on ideas presented in A Minimal Graph API.
Add this to your Cargo.toml
:
toml
[dependencies]
gamma = "0.2"
StableGraph
is the reference Graph
implementation.
```rust use gamma::graph::{ Graph, StableGraph };
fn main() { let graph = StableGraph::build(vec![ 0, 1, 2 ], vec![ (0, 1, "a"), (1, 2, "b") ] ).unwrap();
asserteq!(graph.isempty(), false);
asserteq!(graph.order(), 3);
asserteq!(graph.size(), 2);
asserteq!(graph.nodes().collect::
Depth-first traversal is implemented as an Iterator
.
```rust use gamma::graph::{ Graph, StableGraph }; use gamma::traversal::depth_first;
fn main() { let graph = StableGraph::build(vec![ 0, 1, 2 ], vec![ (0, 1, ()), (1, 2, ()), (2, 0, ()), ]).unwrap(); let traversal = depth_first(&graph, &0).unwrap();
assert_eq!(traversal.collect::
Breadth-first traversal is also implemented as an Iterator
.
```rust use gamma::graph::{ Graph, StableGraph }; use gamma::traversal::breadth_first;
fn main() { let graph = StableGraph::build(vec![ 0, 1, 2 ], vec![ (0, 1, ()), (1, 2, ()), (2, 0, ()), ]).unwrap(); let traversal = breadth_first(&graph, &0).unwrap();
assert_eq!(traversal.collect::
Gamma is not yet stable, but care is taken to limit breaking changes whenever possible. Patch versions never introduce breaking changes.
Gamma is distributed under the terms of the MIT License. See LICENSE-MIT and COPYRIGHT for details.