Table of Contents
bf_search ( graph, root=None )
Returns a list of all nodes that can be reached from the root node in breadth-first order.
If root is not given, the search will be rooted at an arbitrary node.
df_search ( graph, root=None )
Returns a list of all nodes that can be reached from the root node in depth-first order.
A directed multigraph abstraction with labeled edges.