Kruskal's algorithm is an algorithm in graph theory that finds a minimum spanning tree for a connected weighted graph. This means it finds a subset of the edges that forms a tree that includes every vertex, where the total weight of all the edges in the tree is minimized. If the graph is not connected, then it finds a minimum spanning forest (a minimum spanning tree for each connected component). Kruskal's algorithm is an example of a greedy algorithm.
It works as follows:
This algorithm first appeared in Proceedings of the American Mathematical Society, pp. 48–50 in 1956, and was written by Joseph Kruskal.
Other algorithms for this problem include Prim's algorithm, and Borůvka's algorithm.
We can achieve this bound as follows: first sort the edges by weight using a comparison sort in O(E log E) time; this allows the step "remove an edge with minimum weight from S" to operate in constant time. Next, we use a disjoint-set data structure to keep track of which vertices are in which components. We need to perform O(E) operations, two find operations and possibly one union for each edge. Even a simple disjoint-set data structure such as disjoint-set forests with union by rank can perform O(E) operations in O(E log V) time. Thus the total time is O(E log E) = O(E log V).
Provided that the edges are either already sorted or can be sorted in linear time (for example with counting sort or radix sort), the algorithm can use more sophisticated disjoint-set data structures to run in O(E α(V)) time, where α is the extremely slowly-growing inverse of the single-valued Ackermann function.
| This is our original graph. The numbers near the arcs indicate their weight. None of the arcs are highlighted. |
| AD and CE are the shortest arcs, with length 5, and AD has been arbitrarily chosen, so it is highlighted. |
| However, CE is now the shortest arc that does not form a loop, with length 5, so it is highlighted as the second arc. |
| The next arc, DF with length 6, is highlighted using much the same method. |
| The next-shortest arcs are AB and BE, both with length 7. AB is chosen arbitrarily, and is highlighted. The arc BD has been highlighted in red, because it would form a loop ABD if it were chosen. |
| The process continutes to highlight the next-smallest arc, BE with length 7. Many more arcs are highlighted in red at this stage: BC because it would form the loop BCE, DE because it would form the loop DEBA, and FE because it would form FEBAD. |
| Finally, the process finishes with the arc EG of length 9, and the minimum spanning tree is found. |
For simplicity, assume that all edges have different weights. Let Y1 be a minimum spanning tree. If Y1=Y then Y is a minimum spanning tree. Otherwise, let e be the first edge considered by the algorithm that is in Y but not in Y1. Y1+e has a cycle, because you cannot add an edge to a spanning tree and still have a tree. This cycle contains another edge f which at the stage of the algorithm where e is added to Y, has not been considered. This is because otherwise e would not connect different trees but two branches of the same tree. Then Y2=Y1+e-f is also a spanning tree. Its total weight is less than the total weight of Y1. This is because the algorithm visits e before f. It follows that Y1 is no minimum spanning tree, and the assumption that there exists an edge in Y, but not in Y1, was incorrect. This proves that Y=Y1, i.e., Y is a minimum spanning tree.
Graph algorithms | Polynomial-time problems | Trees (structure)
Kruskalův algoritmus | Algorithmus von Kruskal | Algoritmo de Kruskal | Algorithme de Kruskal | האלגוריתם של קרוסקל | Algoritmo di Kruskal | 크루스칼 알고리즘 | Algorytm Kruskala | Algoritmo de Kruskal | Алгоритм Краскала | Kruskals algoritm | Kruskal演算法
This article is licensed under the GNU Free Documentation License.
It uses material from the
"Kruskal's algorithm".
Home Page • arts • business • computers • games • health • hospitals • home • kids & teens • news • physicians • recreation• reference • regional • science • shopping • society • sports • world