Minimum/Maximum Spanning Tree (MST)
- is a subset of edges that connects all vertices with the minimum/maximum sum edge-weight without any cycles
- every spanning tree has 𝑛-1 edges, given 𝑛 vertices in a graph
MST - Algorithms
|
Algorithm |
Description | |
|---|---|---|
|
using binary heap and adjacency list 𝑂(𝐸 𝑙𝑜𝑔 𝑉))
| |
|
using binary heap and adjacency list 𝑂(𝐸 𝑙𝑜𝑔 𝑉))
|