This is an old revision of the document!


4.5. The Minimum Spanning Tree Problem

  • A Spanning Tree is a tree that spans all the nodes in a graph
  • Given a connected graph G = (V, E) with positive edge weights ce, a Minimum Spanning Tree is a subset of the edges T ⊆ E such that T is a spanning tree whose sum of edge weights is minimized.
Problem To be solved
  • We need to find the cheapest spanning tree of the graph, which is called the Minimum Spanning Tree as mentioned above

Designing the algorithm

Three simple algorithms that efficiently finds the Minimum Spanning Tree:

Prim's algorithm

  • Start with some root node s and greedily grow a tree T from s outward
  • At each step, add the cheapest edge e to T that has exactly one endpoint in T
  • Similar to Dijkstra’s (but simpler)
  • So, in brief:
    • Maintain a set S ⊆ V ,the set on which we have constructed the spanning tree so far
    • Initially S = {s}, s the root node
    • In each iteration:
    • Grow S by one node, adding to S a node v whose cost = min e = (u,v):u in S Ce
    • Also add the edge e =(u,v) that satisfies the above formula.

Kruskal's algorithm.

Ø Start with T = φ Ø Consider edges in ascending order of cost Ø Insert edge e in T unless doing so would create a cycle • Reverse-Delete algorithm. Ø Start with T = E Ø Consider edges in descending order of cost Ø Delete edge e from T unless doing so would disconnect T

courses/cs211/winter2012/journals/jeanpaul/chapterfour_sectionv.1330564741.txt.gz · Last modified: 2012/03/01 01:19 by mugabej
CC Attribution-Noncommercial-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0