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 W:
================================================
| Node | Shortest distance from W | Previous Node |
================================================
W 0 n/a
V 1 W
Y 2 W
U 5 V
X 5 Y
Z 8 Y
================================================
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. The prior node in the path to U is V, and we know the shortest distance of both U (5) and V (1), so 5 - 1 = 4 which is X.
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: 4
The answer was: n/a