Minimum Spanning Forest
Problem Specification#
Input#
, an undirected, weighted graph on vertices.
Output#
, a set of edges representing a minimum spanning forest (MSF) of .
Algorithm Implementations#
We present an implementation of Boruvka's algorithm that runs in work and depth w.h.p. A detailed description of our algorithm can be found in Section 6.2 of this paper.
The code for the primary implementation is available here.
Cost Bounds#
The algorithm runs in work and depth w.h.p.