Kruskal's Algorithm
An algorithm used to find the minimum spanning tree
Steps:
- Sort all edges by their weights in non-decreasing order
- Pick the smallest edge. If it forms a cycle within spanning tree so far discard it
- Keep doing step 2 until all nodes in the graph are connected
GeeksForGeeks Article