HOME

TheInfoList



OR:

Kruskal's algorithm finds a minimum spanning forest of an undirected edge-weighted graph. If the graph is
connected Connected may refer to: Film and television * ''Connected'' (2008 film), a Hong Kong remake of the American movie ''Cellular'' * '' Connected: An Autoblogography About Love, Death & Technology'', a 2011 documentary film * ''Connected'' (2015 TV ...
, it finds a
minimum spanning tree A minimum spanning tree (MST) or minimum weight spanning tree is a subset of the edges of a connected, edge-weighted undirected graph that connects all the vertices together, without any cycles and with the minimum possible total edge weight. T ...
. (A minimum spanning tree of a connected graph is a subset of the
edge Edge or EDGE may refer to: Technology Computing * Edge computing, a network load-balancing system * Edge device, an entry point to a computer network * Adobe Edge, a graphical development application * Microsoft Edge, a web browser developed by ...
s that forms a tree that includes every
vertex Vertex, vertices or vertexes may refer to: Science and technology Mathematics and computer science *Vertex (geometry), a point where two or more curves, lines, or edges meet * Vertex (computer graphics), a data structure that describes the positio ...
, where the sum of the weights of all the edges in the tree is minimized. For a disconnected graph, a minimum spanning forest is composed of a minimum spanning tree for each connected component.) It is a
greedy algorithm A greedy algorithm is any algorithm that follows the problem-solving heuristic of making the locally optimal choice at each stage. In many problems, a greedy strategy does not produce an optimal solution, but a greedy heuristic can yield locally ...
in
graph theory In mathematics, graph theory is the study of ''graphs'', which are mathematical structures used to model pairwise relations between objects. A graph in this context is made up of '' vertices'' (also called ''nodes'' or ''points'') which are conne ...
as in each step it adds the next lowest-weight edge that will not form a cycle to the minimum spanning forest. This algorithm first appeared in ''
Proceedings of the American Mathematical Society ''Proceedings of the American Mathematical Society'' is a monthly peer-reviewed scientific journal of mathematics published by the American Mathematical Society. As a requirement, all articles must be at most 15 printed pages. According to the ' ...
'', pp. 48–50 in 1956, and was written by Joseph Kruskal. It was rediscovered by . Other algorithms for this problem include
Prim's algorithm In computer science, Prim's algorithm (also known as Jarník's algorithm) is a greedy algorithm that finds a minimum spanning tree for a weighted undirected graph. This means it finds a subset of the edges that forms a tree that includes every v ...
, the
reverse-delete algorithm The reverse-delete algorithm is an algorithm in graph theory used to obtain a minimum spanning tree from a given connected, edge-weighted graph. It first appeared in , but it should not be confused with Kruskal's algorithm which appears in the sa ...
, and
Borůvka's algorithm Borůvka's algorithm is a greedy algorithm for finding a minimum spanning tree in a graph, or a minimum spanning forest in the case of a graph that is not connected. It was first published in 1926 by Otakar Borůvka as a method of constructing ...
.


Algorithm

* create a forest ''F'' (a set of trees), where each vertex in the graph is a separate
tree In botany, a tree is a perennial plant with an elongated stem, or trunk, usually supporting branches and leaves. In some usages, the definition of a tree may be narrower, including only woody plants with secondary growth, plants that are ...
* create a sorted set ''S'' containing all the edges in the graph * while ''S'' is
nonempty In mathematics, the empty set is the unique set having no elements; its size or cardinality (count of elements in a set) is zero. Some axiomatic set theories ensure that the empty set exists by including an axiom of empty set, while in other ...
and ''F'' is not yet spanning ** remove an edge with minimum weight from ''S'' ** if the removed edge connects two different trees then add it to the forest ''F'', combining two trees into a single tree At the termination of the algorithm, the forest forms a minimum spanning forest of the graph. If the graph is connected, the forest has a single component and forms a minimum spanning tree.


Pseudocode

The following code is implemented with a
disjoint-set data structure In computer science, a disjoint-set data structure, also called a union–find data structure or merge–find set, is a data structure that stores a collection of disjoint (non-overlapping) sets. Equivalently, it stores a partition of a set ...
. Here, we represent our forest ''F'' as a set of edges, and use the disjoint-set data structure to efficiently determine whether two vertices are part of the same tree. algorithm Kruskal(''G'') is F:= ∅ for each v ∈ G.V do MAKE-SET(v) for each (u, v) in G.E ordered by weight(u, v), increasing do if FIND-SET(u) ≠ FIND-SET(v) then F:= F ∪ ∪ UNION(FIND-SET(u), FIND-SET(v)) return F


Complexity

For a graph with ''E'' edges and ''V'' vertices, Kruskal's algorithm can be shown to run in '' O''(''E''
log Log most often refers to: * Trunk (botany), the stem and main wooden axis of a tree, called logs when cut ** Logging, cutting down trees for logs ** Firewood, logs used for fuel ** Lumber or timber, converted from wood logs * Logarithm, in mathe ...
''E'') time, or equivalently, ''O''(''E'' log ''V'') time, all with simple data structures. These running times are equivalent because: * ''E'' is at most V^2 and \log V^2 = 2 \log V \in O(\log V). * Each isolated vertex is a separate component of the minimum spanning forest. If we ignore isolated vertices we obtain ''V'' ≤ 2''E'', so log ''V'' is O(\log E). We can achieve this bound as follows: first sort the edges by weight using a
comparison sort A comparison sort is a type of sorting algorithm that only reads the list elements through a single abstract comparison operation (often a "less than or equal to" operator or a three-way comparison) that determines which of two elements should occ ...
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 In computer science, a disjoint-set data structure, also called a union–find data structure or merge–find set, is a data structure that stores a collection of disjoint (non-overlapping) sets. Equivalently, it stores a partition of a set ...
to keep track of which vertices are in which components. We place each vertex into its own disjoint set, which takes O(''V'') operations. Finally, in worst case, we need to iterate through all edges, and for each edge we need to do two 'find' operations and possibly one union. 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 In computer science, counting sort is an algorithm for sorting a collection of objects according to keys that are small positive integers; that is, it is an integer sorting algorithm. It operates by counting the number of objects that possess dis ...
or
radix sort In computer science, radix sort is a non-comparative sorting algorithm. It avoids comparison by creating and distributing elements into buckets according to their radix. For elements with more than one significant digit, this bucketing process i ...
), the algorithm can use a more sophisticated
disjoint-set data structure In computer science, a disjoint-set data structure, also called a union–find data structure or merge–find set, is a data structure that stores a collection of disjoint (non-overlapping) sets. Equivalently, it stores a partition of a set ...
to run in ''O''(''E'' α(''V'')) time, where α is the extremely slowly growing inverse of the single-valued Ackermann function.


Example


Proof of correctness

The proof consists of two parts. First, it is proved that the algorithm produces a
spanning tree In the mathematical field of graph theory, a spanning tree ''T'' of an undirected graph ''G'' is a subgraph that is a tree which includes all of the vertices of ''G''. In general, a graph may have several spanning trees, but a graph that is not ...
. Second, it is proved that the constructed spanning tree is of minimal weight.


Spanning tree

Let G be a connected, weighted graph and let Y be the subgraph of G produced by the algorithm. Y cannot have a cycle, as by definition an edge is not added if it results in a cycle. Y cannot be disconnected, since the first encountered edge that joins two components of Y would have been added by the algorithm. Thus, Y is a spanning tree of G.


Minimality

We show that the following proposition ''P'' is true by
induction Induction, Inducible or Inductive may refer to: Biology and medicine * Labor induction (birth/pregnancy) * Induction chemotherapy, in medicine * Induced stem cells, stem cells derived from somatic, reproductive, pluripotent or other cell t ...
: If ''F'' is the set of edges chosen at any stage of the algorithm, then there is some minimum spanning tree that contains ''F'' and none of the edges rejected by the algorithm. * Clearly ''P'' is true at the beginning, when ''F'' is empty: any minimum spanning tree will do, and there exists one because a weighted connected graph always has a minimum spanning tree. * Now assume ''P'' is true for some non-final edge set ''F'' and let ''T'' be a minimum spanning tree that contains ''F''. ** If the next chosen edge ''e'' is also in ''T'', then ''P'' is true for ''F'' + ''e''. **Otherwise, if ''e'' is not in ''T'' then ''T'' + ''e'' has a cycle ''C''. This cycle contains edges which do not belong to ''F'', since ''e'' does not form a cycle when added to ''F'' but does in ''T''. Let ''f'' be an edge which is in ''C'' but not in ''F'' + ''e''. Note that ''f'' also belongs to ''T'', and by ''P'', it has not been considered by the algorithm. ''f'' must therefore have a weight at least as large as ''e''. Then ''T'' − ''f'' + ''e'' is a tree, and it has the same or less weight as ''T''. So ''T'' − ''f'' + ''e'' is a minimum spanning tree containing ''F'' + ''e'' and again ''P'' holds. * Therefore, by the principle of induction, ''P'' holds when ''F'' has become a spanning tree, which is only possible if ''F'' is a minimum spanning tree itself.


Parallel algorithm

Kruskal's algorithm is inherently sequential and hard to parallelize. It is, however, possible to perform the initial sorting of the edges in parallel or, alternatively, to use a parallel implementation of a
binary heap A binary heap is a heap data structure that takes the form of a binary tree. Binary heaps are a common way of implementing priority queues. The binary heap was introduced by J. W. J. Williams in 1964, as a data structure for heapsort. A bin ...
to extract the minimum-weight edge in every iteration. As parallel sorting is possible in time O(n) on O(\log n) processors, the runtime of Kruskal's algorithm can be reduced to ''O''(''E'' α(''V'')), where α again is the inverse of the single-valued Ackermann function. A variant of Kruskal's algorithm, named Filter-Kruskal, has been described by Osipov et al. and is better suited for parallelization. The basic idea behind Filter-Kruskal is to partition the edges in a similar way to
quicksort Quicksort is an efficient, general-purpose sorting algorithm. Quicksort was developed by British computer scientist Tony Hoare in 1959 and published in 1961, it is still a commonly used algorithm for sorting. Overall, it is slightly faster than ...
and filter out edges that connect vertices of the same tree to reduce the cost of sorting. The following
pseudocode In computer science, pseudocode is a plain language description of the steps in an algorithm or another system. Pseudocode often uses structural conventions of a normal programming language, but is intended for human reading rather than machine re ...
demonstrates this. function filter_kruskal(G) is if , G.E, < kruskal_threshold: return kruskal(G) pivot = choose_random(G.E) E_\le, E_> = partition(G.E, pivot) A = filter_kruskal(E_\le) E_> = filter(E_>) A = A ∪ filter_kruskal(E_>) return A function partition(E, pivot) is E_\le = ∅, E_> = ∅ foreach (u, v) in E do if weight(u, v) <= pivot then E_\le = E_\le ∪ else E_> = E_> ∪ return E_\le, E_> function filter(E) is E_\text = ∅ foreach (u, v) in E do if find_set(u) ≠ find_set(v) then E_\text = E_\text ∪ return E_\text Filter-Kruskal lends itself better for parallelization as sorting, filtering, and partitioning can easily be performed in parallel by distributing the edges between the processors. Finally, other variants of a parallel implementation of Kruskal's algorithm have been explored. Examples include a scheme that uses helper threads to remove edges that are definitely not part of the MST in the background, and a variant which runs the sequential algorithm on ''p'' subgraphs, then merges those subgraphs until only one, the final MST, remains.


See also

*
Prim's algorithm In computer science, Prim's algorithm (also known as Jarník's algorithm) is a greedy algorithm that finds a minimum spanning tree for a weighted undirected graph. This means it finds a subset of the edges that forms a tree that includes every v ...
*
Dijkstra's algorithm Dijkstra's algorithm ( ) is an algorithm for finding the shortest paths between nodes in a graph, which may represent, for example, road networks. It was conceived by computer scientist Edsger W. Dijkstra in 1956 and published three years ...
*
Borůvka's algorithm Borůvka's algorithm is a greedy algorithm for finding a minimum spanning tree in a graph, or a minimum spanning forest in the case of a graph that is not connected. It was first published in 1926 by Otakar Borůvka as a method of constructing ...
*
Reverse-delete algorithm The reverse-delete algorithm is an algorithm in graph theory used to obtain a minimum spanning tree from a given connected, edge-weighted graph. It first appeared in , but it should not be confused with Kruskal's algorithm which appears in the sa ...
*
Single-linkage clustering In statistics, single-linkage clustering is one of several methods of hierarchical clustering. It is based on grouping clusters in bottom-up fashion (agglomerative clustering), at each step combining two clusters that contain the closest pair of el ...
* Greedy geometric spanner


References

*
Thomas H. Cormen Thomas H. Cormen is the co-author of ''Introduction to Algorithms'', along with Charles Leiserson, Ron Rivest, and Cliff Stein. In 2013, he published a new book titled '' Algorithms Unlocked''. He is a professor of computer science at Dartmout ...
,
Charles E. Leiserson Charles Eric Leiserson is a computer scientist, specializing in the theory of parallel computing and distributed computing, and particularly practical applications thereof. As part of this effort, he developed the Cilk multithreaded language. ...
,
Ronald L. Rivest Ronald Linn Rivest (; born May 6, 1947) is a cryptographer and an Institute Professor at MIT. He is a member of MIT's Department of Electrical Engineering and Computer Science (EECS) and a member of MIT's Computer Science and Artificial Inte ...
, and
Clifford Stein Clifford Seth Stein (born December 14, 1965), a computer scientist, is a professor of industrial engineering and operations research at Columbia University in New York, NY, where he also holds an appointment in the Department of Computer Scien ...
. ''
Introduction to Algorithms ''Introduction to Algorithms'' is a book on computer programming by Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein. The book has been widely used as the textbook for algorithms courses at many universities and is co ...
'', Second Edition. MIT Press and McGraw-Hill, 2001. . Section 23.2: The algorithms of Kruskal and Prim, pp. 567–574. * Michael T. Goodrich and
Roberto Tamassia Roberto Tamassia is an American Italian computer scientist, the Plastech Professor of Computer Science at Brown University, and served as the chair of the Brown Computer Science department from 2007 to 2014.
. ''Data Structures and Algorithms in Java'', Fourth Edition. John Wiley & Sons, Inc., 2006. {{isbn, 0-471-73884-0. Section 13.7.1: Kruskal's Algorithm, pp. 632..


External links


Data for the article's example

Gephi Plugin For Calculating a Minimum Spanning Treesource code

Kruskal's Algorithm with example and program in c++

Kruskal's Algorithm code in C++ as applied to random numbers

Kruskal's Algorithm code in Python with explanation
Graph algorithms Spanning tree Articles with example pseudocode Articles containing proofs Greedy algorithms