Kruskal’s Algorithm
Kruskal’s algorithm is a greedy algorithm that finds a minimum spanning tree for a connected graph. The algorithm builds the MST by adding edges one at a time, starting with the smallest edge and adding the next smallest edge that does not form a cycle in the tree.




Psuedocode
Algorithm \(\text{Kruskal}(G)\):
Input: An undirected, weighted, connected graph \(G\) with \(n\) vertices and \(m\) edges
Output: A minimum spanning tree \(T\) for \(G\)
Sort all the edges in non-decreasing order of their weight.
Initialize an empty graph \(T\) to store the MST.
for each edge \(e\) in the sorted list of edges do
- if adding edge \(e\) does not form a cycle in \(T\) then
- add edge \(e\) to \(T\)
- if adding edge \(e\) does not form a cycle in \(T\) then
return \(T\)
Analysis
The time complexity of Kruskal’s algorithm is O(E log E), where E is the number of edges in the graph.