Undirected, Integer Weights MST: Difference between revisions

From Algorithm Wiki
Jump to navigation Jump to search
(Created page with "{{DISPLAYTITLE:Undirected, Integer Weights MST (Minimum Spanning Tree (MST))}} == Description == A minimum spanning tree (MST) or minimum weight spanning tree is a subset of the edges of a connected; edge-weighted undirected graph that connects all the vertices together; without any cycles and with the minimum possible total edge weight. Here, we assume that the edges have integer weights, represented in binary. == Related Problems == Generalizations: Undirected,...")
 
No edit summary
Line 12: Line 12:
== Parameters ==  
== Parameters ==  


<pre>V: number of vertices
V: number of vertices
 
E: number of edges
E: number of edges
U: maximum edge weight</pre>
 
U: maximum edge weight


== Table of Algorithms ==  
== Table of Algorithms ==  

Revision as of 13:02, 15 February 2023

Description

A minimum spanning tree (MST) or minimum weight spanning tree is a subset of the edges of a connected; edge-weighted undirected graph that connects all the vertices together; without any cycles and with the minimum possible total edge weight. Here, we assume that the edges have integer weights, represented in binary.

Related Problems

Generalizations: Undirected, General MST

Related: Undirected, Dense MST, Undirected, Planar MST, Directed (Optimum Branchings), General MST, Directed (Optimum Branchings), Super Dense MST

Parameters

V: number of vertices

E: number of edges

U: maximum edge weight

Table of Algorithms

Name Year Time Space Approximation Factor Model Reference
Fredman & Willard 1991 $O(E+V)$ Exact Deterministic Time

References/Citation

https://www-sciencedirect-com.ezproxy.canberra.edu.au/science/article/pii/S0022000005800649?via%3Dihub