Next: union-find data structure, Previous: PrimMST, Up: Graphs
KruskalMST(graph G)
This is correct because each edge used is lightest in a cut.
Runtime is O(e lg(n)) where e is the number of edges, n the number of vertices.
[ Union-find discussion not yet in the notes. Includes lg*() function discussion. ]