Dijkstra's algorithm is a solution to the single-source shortest path problem in graph theory. It finds the shortest paths from a source vertex to all other vertices in a weighted graph where all edge weights are non-negative. The algorithm uses a greedy approach, maintaining a set of vertices whose final shortest path from the source vertex has already been determined.