Kruskal's Algorithm (MST Creation)
The Big Idea of this algorithm is to skip the graph traversal and instead operate on a global set of edges.
Algorithm Steps
- Sort all edges by weight
- For each edge (Ascending Order)
- Check whether nodes are already connected
- if they are, continue
- add edge to MST and combine the two sets
Learn more about Kruskal's Algorithm here:
Kruskal's Algorithm