Module traversal

Source
Expand description

Module for graph traversal algorithms.

Enums§

BfsEvent
A breadth first search (BFS) visitor event.
DfsEvent
A depth first search (DFS) visitor event.
DijkstraEvent
A dijkstra search visitor event.

Functions§

ancestors
Return the ancestors of a node in a graph.
bfs_predecessors
Return the predecessor in a breadth-first-search from a source node
bfs_successors
Return the successors in a breadth-first-search from a source node
breadth_first_search
An iterative breadth first search.
depth_first_search
An iterative depth first search.
descendants
Return the descendants of a node in a graph.
dfs_edges
Return an edge list of the tree edges from a depth-first traversal.
dijkstra_search
Dijkstra traversal of a graph.