Introduction: a quick example
• Use Dijkstra’s algorithm to find the shortest path in a weighted and unweighted
network.
9
>>> import networkx as nx
>>> g = nx.Graph()
>>> g.add_edge('a', 'b', weight=0.1)
>>> g.add_edge('b', 'c', weight=1.5)
>>> g.add_edge('a', 'c', weight=1.0)
>>> g.add_edge('c', 'd', weight=2.2)
Dostları ilə paylaş: