Please enable JavaScript.
Coggle requires JavaScript to display documents.
Kruskal's , Disjoint subsets and Union-Find Algorithms: - Coggle…
Kruskal's , Disjoint subsets and Union-Find Algorithms:
Kruskal's Algorithm
Looks at a minimum spanning tree of a weighted connected graph G={V,E} as an acyclic subgraph wit |V| - 1 edges for which the sum of the edge weights is the smallest.
Consequently:
The algorithm constructs a minimum spanning tree as an expanding sequence of
subgraphs that are always acyclic but are not necessarily connected on the intermediate stages of the algorithm.
-
-
Disjoint Subsets
Kruskal’s algorithm is one of a number of applications that require a dynamic
partition of some n element set S into a collection of disjoint subsets
-