Traversal#

Beam search#

图的节点广度优先搜索的基本算法。

bfs_beam_edges(G, source, value[, width])

遍历波束搜索中的边。

Depth First Search on Edges#

边上的深度优先搜索#

用于图上边深度优先遍历的算法。

edge_dfs(G[, source, orientation])

source 节点开始,对图 G 中的边进行有向深度优先搜索。

Breadth First Search on Edges#

广度优先搜索边#

用于图的边广度优先遍历的算法。

edge_bfs(G[, source, orientation])

source 节点开始,对图 G 中的边进行广度优先搜索。