Minimum Spanning Tree
Author:
Overview
A Minimum Spanning Tree (MST) is a subset of the edges of a connected, undirected graph that connects all the vertices together, without any cycles and with the minimum possible total edge weight. There are different algorithms that can be used to find the MST of a graph, such as Kruskal's algorithm, Prim's algorithm and Boruvka's algorithm.
Kruskal's Algorithm
Prim's Algorithm
Not Available Yet
Boruvka's Algorithm
Not Available Yet