Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 879 Bytes

minimum-spanning-tree.md

File metadata and controls

29 lines (20 loc) · 879 Bytes
title description hide_table_of_contents keywords
Minimum Spanning Tree
A minimum spanning tree is a subset of the edges of a connected undirected graph with the minimum possible total edge weight and it does not contain any cycles.
true
leetcode
tutorial
minimum spanning tree
mst
algorithm

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

See Here

Prim's Algorithm

Not Available Yet

Boruvka's Algorithm

Not Available Yet