An EMST computed and drawn by Leda, a C++ commercial algorithm library; see the External Links section The Euclidean minimum spanning tree or EMST is a minimum spanning tree of a set of points in the plane, where the weight of the edge between each pair of points is the distance between those two points. In simpler terms, an EMST connects a set of dots using lines such that the total length of all the lines is minimized and any dot can be reached from any other by following the lines. This is much like a more difficult version of the child's game connect-the-dots. Algorithms for computing EMSTs
The simplest algorithm to find an EMST, given n points, is to actually construct the complete graph on n vertices, which has n(n - 1) edges, compute each edge weight by finding the distance between each pair of points, and then run a standard minimum spanning tree algorithm on it. Since this graph has O(n2) edges, constructing it already requires O(n2) time; even using a relatively simple minimum spanning tree algorithm such as Prim's algorithm with a Fibonacci heap requires only O(n2) additional time to find the minimum spanning tree of this graph, bringing the total time to O(n2) time. This solution also requires O(n2) space to store all the edges. A better approach to finding the EMST is to note that it is a subgraph of every Delaunay triangulation of the n points, a much-reduced planar set of edges. Although this is not easy to see (a proof is given in the next section), if we are willing to accept it, the algorithm for finding the EMST is clear: - Compute the Delaunay triangulation, which, using a simple randomized algorithm, requires only O(n log n) expected time and O(n) expected space. Because the Delaunay triangulation is a planar graph, and there are no more than 3 times as many edges as vertices in any planar graph, this generates only O(n) edges.
- Label each edge with its length.
- Run Prim's algorithm (any variant) on it to find a minimum spanning tree. Since there are O(n) edges, this requires at most O((n+n)log n) or O(n log n) time.
The final result is an algorithm taking O(n log n) expected time and expected O(n) space. The problem can also be generalized to n points in the d-dimensional space . The first algorithm listed above solves this problem in O(dn2) time, if we use the d-dimensional distance function, and the second algorithm requires the same amount of time in the worst-case, since Delaunay triangulations can have Ω(n2) edges in higher dimensions. In the 1996 paper "A lower bound for randomized algebraic decision trees," Dima Grigoriev and others proved that this general problem requires at least Ω(nlog n) time for n points, but no approach to date has met this lower bound; the best solutions are close to Ω(n2) for large d.
Subset of Delaunay triangulation The most popular efficient algorithm for computing the EMST depends on the fact that its edges are a subset of the edges in every Delaunay triangulation of the points. While this isn't clear, it's not difficult to prove. First, there is a useful property about minimum spanning trees that we will use: if we have a cycle of points, such as v1 → v2 → v3 → v4 → v1, it may so happen that one of the edges between adjacent points in this cycle will have a larger weight than any other. If so, this edge will not be used in any minimum spanning tree. Second, we'll also be using a property of Delaunay triangulations: if there is a circle with two of the input points on its boundary which contains no other input points, the line between those two points is an edge of every Delaunay triangulation. Now, suppose we take an edge e between two input points p and q which is not an edge of a Delaunay triangulation. Then, the circle C with e as its diameter must contain some other point r (or else it would prove that e is in a Delaunay triangulation). But then r is closer to both p and q than they are to each other, and so the edge from p to q is the longest edge in the cycle of points p → q → r → p. Therefore, that edge is not in the EMST. Having shown that every edge not in the Delaunay triangulation is also not in the EMST, the contrapositive follows: that every edge in the EMST is in the Delaunay triangulation.
Applications An obvious application of Euclidean minimum spanning trees is to find the cheapest network of wires or pipes to connect a set of places, assuming the links cost a fixed amount per unit length. However, while these give an absolute lower bound on the amount of connection needed, most such networks prefer a k-connected graph to a tree, so that failure of an any individual link will not split the network into parts. Another application of EMSTs is to approximating the Traveling Salesman Problem on a set of points obeying the triangle inequality, such as a set of points in the plane. This realistic variation of the problem can be solved within a factor of 2 by computing the EMST, doing a walk along its boundary which outlines the entire tree, and then removing any duplicate vertices from this walk.
References - Smith College: The Open Problems Project: Problem 5: Euclidean Minimum Spanning Tree (http://cs.smith.edu/~orourke/TOPP/P5.html#gkms-lbrad-96)
- Dima Grigoriev, Marek Karpinski, Friedhelm Meyer auf der Heide, and Roman Smolensky. "A lower bound for randomized algebraic decision trees." Proceedings of the 28th Annual ACM Symposium on the Theory of Computation, pages 612-619, 1996.
- Max-Planck-Institut fuer Informatik: Exercise solutions (http://www.mpi-sb.mpg.de/~kavitha/assignment10-sol.ps), by Kavitha Telikepalli (Postscript)
External links - Leda (http://www.algorithmic-solutions.com/enleda.htm), a C++ commercial algorithm library with the ability to compute and draw EMSTs
|