Compute shortest path between source and all other reachable nodes for a weighted graph.
Parameters : | G : NetworkX graph source : node
weight: string, optional (default=’weight’) :
cutoff : integer or float, optional
|
---|---|
Returns : | paths : dictionary
|
See also
Notes
Edge weight attributes must be numerical. Distances are calculated as sums of weighted edges traversed.
Examples
>>> G=nx.path_graph(5)
>>> path=nx.single_source_dijkstra_path(G,0)
>>> path[4]
[0, 1, 2, 3, 4]