Crates.io | btree_graph |
lib.rs | btree_graph |
version | 0.2.2 |
source | src |
created_at | 2021-01-18 23:36:04.06436 |
updated_at | 2021-01-22 00:10:03.90065 |
description | A generic graph data structure. |
homepage | https://github.com/jameone/btree_graph |
repository | https://github.com/jameone/btree_graph |
max_upload_size | |
id | 343709 |
size | 55,568 |
This library is a minimal implementation of a graph
(abstract data structure) by way of two binary tree maps
(BTreeMap
). This implementation is often referred to as
an adjacency list.
The primary goals of this implementation are to be
minimal and idiomatic to the Rust language. The alloc
crate is the only dependency when compiled with default
features and is not optional. As one might assume, alloc
is required for reason the implementation relies on BTreeMap
(and the BTreeSet
wrapper).
use btree_graph::BTreeGraph;
fn main() {
let mut graph: BTreeGraph<String, String> = BTreeGraph::new();
// Add nodes.
graph.add_vertex(String::from("Tarzan"));
graph.add_vertex(String::from("Jane"));
// Add a relationship.
graph.add_edge(String::from("Tarzan"), String::from("Jane"), String::from("Loves"));
// Assert relationship now exists.
assert!(graph.adjacdent(String::from("Tarzan"), String::from("Jane")));
}
Add the following to your Cargo.toml
file:
[dependencies]
btree_graph = "0.2.2"
Please see the API for a full list of available methods.
This work is dually licensed under MIT OR Apache-2.0.