Expand description
Graph representations: adjacency list, adjacency matrix, edge list, CSR, weighted graph.
Re-exports§
pub use adjacency_list::AdjacencyList;pub use adjacency_matrix::AdjacencyMatrix;pub use csr_graph::CsrGraph;pub use edge_list::EdgeList;pub use weighted_graph::WeightedGraph;
Modules§
- adjacency_
list - Adjacency-list graph representation.
- adjacency_
matrix - Adjacency-matrix graph representation (row-major boolean).
- csr_
graph - Compressed Sparse Row graph representation.
- edge_
list - Edge list representation.
- weighted_
graph - Weighted graph representation (adjacency list of
(neighbor, weight)).