NetworkX

Previous topic

networkx.single_source_dijkstra_path

Next topic

networkx.all_pairs_dijkstra_path

networkx.single_source_dijkstra_path_length

single_source_dijkstra_path_length(G, source)

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

Parameters:

G : NetworkX graph

source : node label

Starting node for path

Returns:

paths : dictionary

Dictionary of shortest paths keyed by target.

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}