What is the length of the shortest path from node 3 to node 6 in the following graph (you don’t need to use Dijkstra’s algorithm)?
Execute Dijkstra’s algorithm (wihtout backpointers) on the following graph starting from Node A. As I did in the slides, I set up a table to maintain d-values and a place to keep track of the Frontier and Settled sets. Give the final table of d-values as your answer.