0
6.8kviews
Apply Dijkstras algorithm on the following graph
1 Answer
written 3.0 years ago by | • modified 3.0 years ago |
Dijkstra’s Algorithm is a type of Shortest Path Algorithm that is used to find the shortest path from the source vertex to every other vertex in the graph.
1] Let the distance of all other vertices from start = ∞ (infinity)
2] Repeat
Visit the …