Minimum spanning tree

This is an old revision of this page, as edited by 212.229.115.84 (talk) at 00:28, 26 February 2002 (*wrote first 8/9 lines). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

Minimum spanning trees are networking graphs which have no closed circuits but connect every point to another so that one node on the network is accessible from any other node on the network, even if the route between them is long or goes through over nodes. A typical problem which requires finding the minimum spanning tree is cabling a number of houses to a single service. However, minimum spanning trees are not permitted to have a "hub" edge (in the style of a hub computer network) which is not connected to any nodes, only edges; all edges must have a node at both ends.

There are two main algorithms for finding minimum spanning trees, Prim's algorithm and Kruskal's algorithm. Both are greedy algorithms.