Dijkstra's Algorithm
Overview
Dijkstra's Algorithm is a fundamental algorithm which finds the shortest path in a graph form start node to all other nodes.
Key Features
- Is the fastest, single start, shorest path algorithm for directed and undirected graphs
- Works on graphs with non-negative, unbounded weights
- Utilizes a priority queue for improved performance
Algorithm Steps
How It Works:
- Initialize the distance to the source as 0 and all other nodes as infinity.
- Select the vertex with the minimum distance value.
- Update the distances of its adjacent vertices.
- Repeat until all vertices have been visited.