NetworkX

Previous topic

networkx.dijkstra_path_length

Next topic

networkx.single_source_dijkstra_path_length

networkx.single_source_dijkstra_path

single_source_dijkstra_path(G, source)

Compute shortest path between source and all other reachable nodes for a weighted graph.

Parameters:

G : NetworkX graph

source : node

Starting node for path.

Returns:

paths : dictionary

Dictionary of shortest path lengths keyed by target.

Notes

Edge weight attributes must be numerical.

Examples

>>> G=nx.path_graph(5)
>>> path=nx.single_source_dijkstra_path(G,0)
>>> path[4]
[0, 1, 2, 3, 4]