Warning
This documents an unmaintained version of NetworkX. Please upgrade to a maintained version and see the current NetworkX documentation.
bfs_predecessors¶
-
bfs_predecessors
(G, source)[source]¶ Return dictionary of predecessors in breadth-first-search from source.
Parameters: - G (NetworkX graph) –
- source (node) – Specify starting node for breadth-first search and return edges in the component reachable from source.
Returns: pred – A dictionary with nodes as keys and predecessor nodes as values.
Return type: Examples
>>> G = nx.Graph() >>> G.add_path([0,1,2]) >>> print(nx.bfs_predecessors(G,0)) {1: 0, 2: 1}
Notes
Based on http://www.ics.uci.edu/~eppstein/PADS/BFS.py by D. Eppstein, July 2004.