Compute shortest path length between source and all other reachable nodes for a weighted graph.
Parameters: | G : NetworkX graph source : node label
|
---|---|
Returns: | paths : dictionary
|
See also
Notes
Edge data must be numerical values for XGraph and XDiGraphs.
Examples
>>> G=nx.path_graph(5)
>>> length=nx.single_source_dijkstra_path_length(G,0)
>>> length[4]
4
>>> print length
{0: 0, 1: 1, 2: 2, 3: 3, 4: 4}