graph/graph_utils library
Graph representation helpers: adjacency list / weighted edges (roadmap #531).
Classes
- GraphUtils
- Weighted directed edge.
Functions
-
buildGraph(
List< (int, int)> edges, int nodeCount) → Adjacency -
buildWeightedGraph(
List< GraphUtils> edges, int nodeCount) → WeightedAdjacency -
Builds WeightedAdjacency from
edges;nodeCount= max node index + 1.