Skip to main content

Module algorithm

Module algorithm 

Source
Expand description

图算法(Graph Algorithms)

提供常用图算法:BFS/DFS 遍历、Dijkstra 最短路径、拓扑排序、 环检测、连通分量等。基于邻接表表示的图。

Structs§

DirectedGraph
有向图
UndirectedGraph
无向图

Type Aliases§

NodeId
图节点 ID 类型
Weight
边权重类型