Question: Implement Dijkstra's shortest path algorithm in your favorite programming language (Preferably using C++ / Java / C# / Python) and find the shortest path and

Implement Dijkstra's shortest path algorithm in your favorite programming language (Preferably using C++ / Java / C# / Python) and find the shortest path and distance for: TEST CASE 1: From node 1 to node 10 TEST CASE 2: From node 2 to node 9 14 8 12 14 10 9 12 You should print the shortest path and distance of that path. For example, for the following example case, TEST CASE 3: From node 1 to node 4, the output of your program should be like TEST CASE 3 Shortest path: 1> 3> 4 Shortest distance: 13
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
