The Only Minimum Spanning Tree Algorithm
Understand the algorithm and its applications in problem-solving.
We'll cover the following...
Generic strategy for computing minimum spanning trees
There are many algorithms to compute minimum spanning trees, but almost all of them are instances of the following generic strategy. The situation is similar to graph traversal, where several different algorithms are all variants of the generic traversal algorithm whatever-first search.
The generic minimum spanning tree algorithm maintains an acyclic subgraph of the input graph , which we will call the intermediate spanning forest. At all times, satisfies the following invariant:
is a subgraph of the minimum spanning tree of .
Initially, consists of one-vertex trees. The generic algorithm connects trees in by adding certain edges between them. When the algorithm halts, consists of a single spanning tree; our invariant implies that this must be the minimum spanning tree of . Obviously, we have to be careful about which edges we add to the evolving forest because not every edge is in the minimum spanning tree.
At any stage of its evolution, the intermediate spanning forest induces two special types of edges in the rest of the graph:
- An edge is useless if it is not an edge of
Create a free account to access the full course.
By signing up, you agree to Educative's Terms of Service and Privacy Policy