Interactive end-of-chapter exercises


Dijkstra's Link State Algorithm (for computing least cost paths)

Consider the 6-node network shown below, with the given link costs.


Using Dijkstra's algorithm, find the least cost path from source node U to all other destinations and answer the following questions



Question List


1. What is the shortest distance to node x and what node is its predecessor? Write your answer as n,p

2. What is the shortest distance to node w and what node is its predecessor? Write your answer as n,p

3. What is the shortest distance to node y and what node is its predecessor? Write your answer as n,p




Solution


1. The minimum distance from node u to node x is 3, and node x's predecessor is node u. The full answer was: 3,u

2. The minimum distance from node u to node w is 5, and node w's predecessor is node u. The full answer was: 5,u

3. The minimum distance from node u to node y is 9, and node y's predecessor is node x. The full answer was: 9,x



That's incorrect

That's correct

The answer was: 3,u

Question 1 of 3

The answer was: 5,u

Question 2 of 3

The answer was: 9,x

Question 3 of 3

Try Another Problem

We gratefully acknowledge the programming and problem design work of John Broderick (UMass '21), which has really helped to substantially improve this site.

Copyright © 2010-2022 J.F. Kurose, K.W. Ross
Comments welcome and appreciated: kurose@cs.umass.edu