A single-source shortest path algorithm for graphs with non-negative edge weights.
Dijkstra's algorithm is a greedy algorithm that solves the single-source shortest path problem for a directed or undirected graph with non-negative edge weights. This algorithm was conceived by computer scientist Edsger W. Dijkstra in 1956 and published three years later.
Visualization of how Dijkstra's algorithm explores a graph, with visited nodes in red and shortest distances in blue.
Credit to Wikimedia Commons
This interactive demo shows Dijkstra's algorithm in action. Click on nodes to set the start and end points, then click "Run Algorithm" to visualize the shortest path finding process.
function Dijkstra(Graph, source): dist[source] = 0 for each vertex v in Graph: if v is not the source dist[v] = inf add v to unvisited while unvisited is not empty: u = vertex in unvisited with min dist remove u from unvisited for each neighbor v of u: alt = dist[u] + length(u, v) if alt < dist[v]: dist[v] = alt prev[v] = u return dist list, prev list
The time complexity of Dijkstra's algorithm depends on the data structure used:
where V is the number of vertices and E is the number of edges in the graph.
Used in routing protocols like OSPF (Open Shortest Path First) to find the most efficient path for data packets.
Powers navigation systems to find the shortest route between locations on a map.
Used to analyze social graphs and find the shortest connection between users.
For more information about Dijkstra's algorithm and other graph algorithms, visit GeeksforGeeks: Dijkstra's Algorithm.