bfs_tree(G, source, reverse=False, depth_limit=None, sort_neighbors=None)
Based on http://www.ics.uci.edu/~eppstein/PADS/BFS.py by D. Eppstein, July 2004. The modifications to allow depth limits based on the Wikipedia article ":None:None:`Depth-limited-search`
".
<Unimplemented 'target' '.. _Depth-limited-search: https://en.wikipedia.org/wiki/Depth-limited_search'>
Specify starting node for breadth-first search
If True traverse a directed graph in the reverse direction
Specify the maximum search depth
A function that takes the list of neighbors of given node as input, and returns an iterator over these neighbors but with custom ordering.
An oriented tree
Returns an oriented tree constructed from of a breadth-first-search starting at source.
>>> G = nx.path_graph(3)
... print(list(nx.bfs_tree(G, 1).edges())) [(1, 0), (1, 2)]
>>> H = nx.Graph()See :
... nx.add_path(H, [0, 1, 2, 3, 4, 5, 6])
... nx.add_path(H, [2, 7, 8, 9, 10])
... print(sorted(list(nx.bfs_tree(H, source=3, depth_limit=3).edges()))) [(1, 0), (2, 1), (2, 7), (3, 2), (3, 4), (4, 5), (5, 6), (7, 8)]
The following pages refer to to this document either explicitly or contain code examples using this.
networkx.algorithms.traversal.breadth_first_search.bfs_edges
networkx.algorithms.traversal.breadth_first_search.bfs_predecessors
networkx.algorithms.traversal.depth_first_search.dfs_postorder_nodes
networkx.algorithms.traversal.depth_first_search.dfs_tree
networkx.algorithms.traversal.breadth_first_search.bfs_successors
networkx.algorithms.traversal.depth_first_search.dfs_successors
networkx.algorithms.traversal.depth_first_search.dfs_predecessors
networkx.algorithms.traversal.edgebfs.edge_bfs
networkx.algorithms.traversal.breadth_first_search.bfs_tree
Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.
Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)
SVG is more flexible but power hungry; and does not scale well to 50 + nodes.
All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them