Minimum Spanning TreeEdit

A minimum spanning tree is a tree that, for a connected graph G:

  • is a subgraph of G; that
  • spans the entire graph (ie. connects all vertices in G); and
  • has minimum cost (where cost is based on edge weights); and
  • is free of cycles

Algorithms for computing minimum spanning trees include:

See also