1.5.10 Steiner Tree

Problem Input | Problem Output

INPUT                    OUTPUT


Input Description: A graph G=(V,E). A subset of vertices T \in V.

Problem: Find the smallest tree connecting all the vertices of T.

Excerpt from The Algorithm Design Manual: Steiner tree often arises in network design and wiring layout problems. Suppose we are given a set of sites that must be connected by wires as cheaply as possible. The minimum Steiner tree describes the way to connect them using the smallest amount of wire. Analogous problems arise in designing networks of water pipes or heating ducts in buildings. Similar considerations also arise in VLSI circuit layout, where we seek to connect a set of sites to (say) ground under constraints such as material cost, signal propagation time, or reducing capacitance.

The Steiner tree problem is distinguished from the minimum spanning tree problem in that we are permitted to construct or select intermediate connection points to reduce the cost of the tree.


Implementations

  • Salowe's Rectilinear Steiner trees (C) (rating 8)
  • PHYLIP -- inferring phylogenic trees (Pascal) (rating 7)

    Related Problems

  • Minimum Spanning Tree
  • Shortest Path


    Previous Problem Next Problem

    View the graph for this file

    Bulletin Board
    About ``The Algorithm Design Manual''.
    Send us Mail
    The Stony Brook Algorithm Repository -- go to front page

    This page last modified on Wed Mar 07, 2001 .