Interactive end-of-chapter exercises


Dijkstra's Link State Algorithm - Advanced

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

Consider the completed table below, which calculates the shortest distance to all nodes from V:
================================================
|    Node     |    Shortest distance from V    |    Previous Node   |
================================================
       V                                0                                     n/a   
       W                               1                                     V   
       X                                4                                     W   
       U                                7                                     V   
       Y                                8                                     X   
       Z                                10                                   W   
================================================



Question List


1. For link X, what is the cost associated with this link? If the answer can't be determined given the information, respond with 'n/a'

2. For link Y, what is the cost associated with this link? If the answer can't be determined given the information, respond with 'n/a'




Solution


1. Because the link is never used, we cannot determine the value of X, so the answer is n/a.

2. Because the link is never used, we cannot determine the value of Y, so the answer is n/a.



That's incorrect

That's correct

The answer was: n/a

Question 1 of 2

The answer was: n/a

Question 2 of 2

Try Another Problem

We greatly appreciate the work of John Broderick (UMass '21) in helping to develop these interactive problems.

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