Crates.io | graphlib |
lib.rs | graphlib |
version | 0.6.3 |
source | src |
created_at | 2019-03-14 13:08:29.77462 |
updated_at | 2021-11-09 12:05:28.527562 |
description | Graphlib is a simple and powerful rust library for the graph data-structure. |
homepage | |
repository | https://github.com/purpleprotocol/graphlib |
max_upload_size | |
id | 120670 |
size | 148,467 |
Graphlib is a simple and powerful Rust graph library.
This library attempts to provide a generic api for building, mutating and iterating over graphs that is similar to that of other data-structures found in Rust i.e. Vec
, HashMap
, VecDeque
, etc.
use graphlib::Graph;
let mut graph: Graph<usize> = Graph::new();
// Add two vertices to the graph
let id1 = graph.add_vertex(1);
let id2 = graph.add_vertex(2);
// Add an edge between the two vertices
graph.add_edge(&id1, &id2);
assert_eq!(*graph.fetch(&id1).unwrap(), 1);
assert_eq!(*graph.fetch(&id2).unwrap(), 2);
// The graph has 2 vertices and one edge at this point
assert_eq!(graph.vertex_count(), 2);
assert_eq!(graph.edge_count(), 1);
// Remove one of the connected vertices
graph.remove(&id1);
assert_eq!(graph.vertex_count(), 1);
assert_eq!(graph.edge_count(), 0);
std
In Cargo.toml
:
[dependencies]
graphlib = { version = "*", features = ["no_std"] }
We welcome anyone wishing to contribute to Graphlib! Check out the issues section of the repository before starting out.
Graphlib is licensed under the MIT license.