logo

SEE ALGORITHMS

    Bubble SortInsertion SortSelection SortRadix SortHeap SortMerge SortQuick Sort
Graph
    Depth First SearchBreadth First SearchPrim's AlgorithmKruskal's AlgorithmDijkstra's AlgorithmTopological SortingHamiltonian Cycle
    Binary Search TreeBinary HeapCircular Queue
    Convex HullHuffman Coding
Dijkstra's Algorithm

Dijkstra's Algorithm finds the shortest path from a source node to all other nodes in a graph with non-negative weights. It uses a priority queue to explore nodes in order of increasing distance. This algorithm is widely used in routing and navigation systems.

Draw Graph