![]() Animation of Kruskal's algorithm on acomplete graph with weights based on Euclidean distance | |
| Class | Minimum spanning tree algorithm |
|---|---|
| Data structure | Graph |
| Worst-caseperformance | |
Kruskal's algorithm[1] finds aminimum spanning forest of an undirectededge-weighted graph. If the graph isconnected, it finds aminimum spanning tree. It is agreedy algorithm that in each step adds to the forest the lowest-weight edge that will not form acycle.[2] The key steps of the algorithm aresorting and the use of adisjoint-set data structure to detect cycles. Its running time is dominated by the time to sort all of the graph edges by their weight.
A minimum spanning tree of a connected weighted graph is a connected subgraph, without cycles, for which the sum of the weights of all the edges in the subgraph is minimal. For a disconnected graph, a minimum spanning forest is composed of a minimum spanning tree for eachconnected component.
This algorithm was first published byJoseph Kruskal in 1956,[3] and was rediscovered soon afterward byLoberman & Weinberger (1957).[4] Other algorithms for this problem includePrim's algorithm,Borůvka's algorithm, and thereverse-delete algorithm.
The algorithm performs the following steps:
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.
The following code is implemented with adisjoint-set data structure. It represents the forestF as a set of undirected edges, and uses the disjoint-set data structure to efficiently determine whether two vertices are part of the same tree.
function Kruskal(Graph G)is F:= ∅for each vin G.Verticesdo MAKE-SET(v)for each {u, v}in G.Edges ordered by increasing weight({u, v})doif FIND-SET(u) ≠ FIND-SET(v)then F := F ∪ { {u, v} } UNION(FIND-SET(u), FIND-SET(v))return FFor a graph withE edges andV vertices, Kruskal's algorithm can be shown to run in timeO(E logE) time, with simple data structures. This time bound is often written instead asO(E logV), which is equivalent for graphs with no isolated vertices, because for these graphsV / 2 ≤E <V2 and the logarithms ofV andV2 are again within a constant factor of each other.
To achieve this bound, first sort the edges by weight using acomparison sort inO(E logE) time. Once sorted, it is possible to loop through the edges in sorted order in constant time per edge. Next, use adisjoint-set data structure, with a set of vertices for each component, to keep track of which vertices are in which components. Creating this structure, with a separate set for each vertex, takesV operations andO(V) time. The final iteration through all edges performs two find operations and possibly one union operation per edge. These operations takeamortized timeO(α(V)) time per operation, giving worst-case total timeO(Eα(V)) for this loop, whereα is the extremely slowly growinginverse Ackermann function. This part of the time bound is much smaller than the time for the sorting step, so the total time for the algorithm can be simplified to the time for the sorting step.
In cases where the edges are already sorted, or where they have small enough integer weight to allowinteger sorting algorithms such ascounting sort orradix sort to sort them in linear time, the disjoint set operations are the slowest remaining part of the algorithm and the total time isO(Eα(V)).
| Image | Description |
|---|---|
| AD andCE are the shortest edges, with length 5, andAD has beenarbitrarily chosen, so it is highlighted. | |
| CE is now the shortest edge that does not form a cycle, with length 5, so it is highlighted as the second edge. | |
| The next edge,DF with length 6, is highlighted using much the same method. | |
| The next-shortest edges areAB andBE, both with length 7.AB is chosen arbitrarily, and is highlighted. The edgeBD has been highlighted in red, because there already exists a path (in green) betweenB andD, so it would form a cycle (ABD) if it were chosen. | |
| The process continues to highlight the next-smallest edge,BE with length 7. Many more edges are highlighted in red at this stage:BC because it would form the loopBCE,DE because it would form the loopDEBA, andFE because it would formFEBAD. | |
| Finally, the process finishes with the edgeEG of length 9, and the minimum spanning tree is found. |
The proof consists of two parts. First, it is proved that the algorithm produces aspanning tree. Second, it is proved that the constructed spanning tree is of minimal weight.
Let be a connected, weighted graph and let be the subgraph of produced by the algorithm. cannot have a cycle, as by definition an edge is not added if it results in a cycle. cannot be disconnected, since the first encountered edge that joins two components of would have been added by the algorithm. Thus, is a spanning tree of.
We show that the following propositionP is true byinduction: IfF is the set of edges chosen at any stage of the algorithm, then there is some minimum spanning tree that containsF and none of the edges rejected by the 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 abinary heap to extract the minimum-weight edge in every iteration.[5]As parallel sorting is possible in time on processors,[6] the runtime of Kruskal's algorithm can be reduced toO(E α(V)), where α again is the inverse of the single-valuedAckermann function.
A variant of Kruskal's algorithm, named Filter-Kruskal, has been described by Osipov et al.[7] and is better suited for parallelization. The basic idea behind Filter-Kruskal is to partition the edges in a similar way toquicksort and filter out edges that connect vertices of the same tree to reduce the cost of sorting. The followingpseudocode demonstrates this.
function filter_kruskal(G)isif |G.E| < kruskal_threshold:return kruskal(G) pivot = choose_random(G.E) E≤, E> = partition(G.E, pivot) A = filter_kruskal(E≤) E> = filter(E>) A = A ∪ filter_kruskal(E>)return Afunction partition(E, pivot)is E≤ = ∅, E> = ∅foreach (u, v) in Edoif weight(u, v) ≤ pivotthen E≤ = E≤ ∪ {(u, v)}else E> = E> ∪ {(u, v)}return E≤, E>function filter(E)is Ef = ∅foreach (u, v) in Edoif find_set(u) ≠ find_set(v)then Ef = Ef ∪ {(u, v)}return EfFilter-Kruskal lends itself better to parallelization as sorting, filtering, and partitioning can easily be performed in parallel by distributing the edges between the processors.[7]
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,[8] and a variant which runs the sequential algorithm onp subgraphs, then merges those subgraphs until only one, the final MST, remains.[9]
{{cite book}}: CS1 maint: multiple names: authors list (link)