logoSEE ALGORITHMS
    Bubble Sort
    Insertion Sort
    Selection Sort
    Radix Sort
    Heap Sort
    Merge Sort
    Quick Sort
Graph
    Depth First Search
    Breadth First Search
    Prim's Algorithm
    Kruskal's Algorithm
    Dijkstra's Algorithm
    Topological Sorting
    Hamiltonian Cycle
    Binary Search Tree
    Binary Heap
    Circular Queue
    Convex Hull
    Huffman Coding
Kruskal's Algorithm

Kruskal's Algorithm builds a Minimum Spanning Tree (MST) by sorting all edges and adding them in order of increasing weight, ensuring no cycles are formed. It is efficient for sparse graphs and uses a union-find data structure to manage connected components.

Draw Graph