Euclidean minimum spanning tree
The Euclidean minimum spanning tree or EMST is a Minimum spanning tree of a set of points in the plane (or more generally in Algorithms for computing EMSTsThe simplest algorithm to find an EMST, given n points, is to actually construct the Complete graph on n vertices, which has n(n-1)/2 edges, compute each edge weight by finding the distance between each pair of points, and then run a standard minimum spanning tree algorithm (such as the version of Prim's algorithm based on Fibonacci heaps) on it. Since this graph has Θ(n 2) edges for n distinct points, constructing it already requires Ω(n 2) time. This solution also requires Ω(n 2) space to store all the edges.A better approach to finding the EMST in a plane is to note that it is a subgraph of every Delaunay triangulation of the n points, a much-reduced 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:
The problem can also be generalized to n points in the d-dimensional space Subset of Delaunay triangulationThe 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. Expected sizeThe expected size of the EMST for large numbers of points has been determined by J. Michael Steele. If f is the density of the probability function for picking points, then for large n and
ApplicationsAn 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 a constant-factor approximation algorithm for approximately solving the Euclidean traveling salesman problem, the version of the Traveling salesman problem on a set of points in the plane with edges labelled by their length. 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 all but one occurrence of each vertex from this walk. |
This page is based on the Wikipedia article ''Euclidean minimum spanning tree''. It is licensed under the GNU free documentation license.