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 ImplementationsWe 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 BoundsThe algorithm runs in work and depth w.h.p.