Shortest Path Algorithm Visualizer

Visualize how Dijkstra's algorithm finds the shortest path between two points

About Dijkstra's Algorithm

Dijkstra's algorithm is a method for finding the shortest path between nodes in a graph. It works by visiting nodes in order of their distance from the starting point, ensuring that when we reach the target node, we've found the shortest path.

Path Length
-
Nodes Visited
-
Time Taken
-

How to Use