Euclidean minimum spanning tree

From Wikipedia, the free encyclopedia
An EMST of 25 random points in the plane

The Euclidean minimum spanning tree or EMST is a minimum spanning tree of a set of points in the plane or higher-dimensional Euclidean space. It connects the points by a system of line segments, so that any two points can reach each other along a path through the line segments, and it selects line segments that minimize the sum of the Euclidean distances between directly-connected pairs of points.

In the plane, the Euclidean minimum spanning tree is a subgraph of the Delaunay triangulation. Using this fact, the Euclidean minimum spanning tree for a given set of planar points may be found in time (expressed in Big O notation), using algorithms based on comparisons of simple combinations of input coordinates. Faster randomized algorithms are known in models of computation allowing more powerful operations such as integer rounding.

In higher dimensions (), finding an optimal algorithm remains an open problem.

Lower bound[]

An asymptotic lower bound of of the EMST problem can be established in restricted models of computation, such as the algebraic decision tree and models, in which the algorithm has access to the input points only through certain restricted primitives that perform simple algebraic computations on their coordinates: in these models, the closest pair of points problem requires time, but the closest pair is necessarily an edge of the EMST, so the EMST also requires this much time.[1] However, if the input points have integer coordinates and bitwise operations and table indexing operations are permitted using those coordinates, then faster algorithms are possible.[2]

Algorithms for computing EMSTs in two dimensions[]

The simplest algorithm to find an EMST in two dimensions, given points, is to actually construct the complete graph on vertices, which has 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 Prim's algorithm or Kruskal's algorithm) on it. This solution uses time , and with care can be made to take space . To avoid numerical issues with the sum of square roots in the formula for Euclidean distance using the Pythagorean theorem, the squares of the Euclidean distances, instead of the distances themselves, may be used as edge weights. The resulting weights are polynomials of the input coordinates, and the tree obtained using them in place of the distances is unchanged.[3]

A faster approach to finding the EMST in a plane is to note that it is a subgraph of every Delaunay triangulation of the points, a much-reduced set of edges:

  1. Compute the Delaunay triangulation in time and space. Because the Delaunay triangulation is a planar graph, and there are no more than three times as many edges as vertices in any planar graph, this generates only edges.
  2. Label each edge with its length.
  3. Run a graph minimum spanning tree algorithm on this graph to find a minimum spanning tree. Since there are edges, this requires time using any of the standard minimum spanning tree algorithms such as Borůvka's algorithm, Prim's algorithm, or Kruskal's algorithm.

The final result is an algorithm taking time and space.

If the input coordinates are integers and can be used as array indices, faster algorithms are possible: the Delaunay triangulation can be constructed by a randomized algorithm in expected time.[2] Additionally, since the Delaunay triangulation is a planar graph, its minimum spanning tree can be found in linear time by a variant of Borůvka's algorithm that removes all but the cheapest edge between each pair of components after each stage of the algorithm.[4][5] Therefore, the total expected time for this algorithm is .[2]

Higher dimensions[]

The problem can also be generalized to points in the -dimensional space . In higher dimensions, the connectivity determined by the Delaunay triangulation (which, likewise, partitions the convex hull into -dimensional simplices) contains the minimum spanning tree; however, the triangulation might contain the complete graph.[6] Therefore, finding the Euclidean minimum spanning tree as a spanning tree of the complete graph or as a spanning tree of the Delaunay triangulation both take time. For three dimensions it is possible to find the minimum spanning tree in time , and in any dimension greater than three it is possible to solve it in a time that is faster than the quadratic time bound for the complete graph and Delaunay triangulation algorithms.[6] For uniformly random point sets it is possible to compute minimum spanning trees as quickly as sorting.[7] Using a well-separated pair decomposition, it is possible to produce a -approximation in time.[8]

Subtree of Delaunay triangulation[]

EMST Delaunay proof.png

All edges of an EMST are edges of a relative neighborhood graph,[9][10][11] which in turn are edges of a Gabriel graph, which are edges in a Delaunay triangulation of the points,[12][13] as can be proven via the equivalent contrapositive statement: every edge not in a Delaunay triangulation is also not in any EMST. The proof is based on two properties of minimum spanning trees and Delaunay triangulations:

  1. (the cycle property of minimum spanning trees): For any cycle in the graph, if the weight of an edge of is larger than the weights of other edges of , then this edge cannot belong to an MST.
  2. (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.

Consider an edge between two input points and which is not an edge of a Delaunay triangulation. Property 2 implies that the circle with as its diameter must contain some other point inside. But then is closer to both and than they are to each other, and so the edge from to is the longest edge in the cycle of points , and by property 1 is not in any EMST.

Expected size[]

The expected size of the EMST for large numbers of points has been determined by J. Michael Steele.[14] If is the density of the probability function for picking points, then for large and the size of the EMST is approximately

where is a constant depending only on the dimension . The exact value of the constants are unknown but can be estimated from empirical evidence.

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 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.

Planar realization[]

The realization problem for Euclidean minimum spanning trees is stated as follows: Given a tree , find a location for each vertex so that is a minimum spanning tree of , or determine that no such locations exist. Testing of the existence of a realization in the plane is NP-hard.[15]

See also[]

References[]

  1. ^ Yao, Andrew Chi Chih (1989), "Lower bounds for algebraic computation trees with integer inputs", Proc. 30th Annual Symposium on Foundations of Computer Science (FOCS 1989), pp. 308–313, doi:10.1109/SFCS.1989.63495
  2. ^ a b c Buchin, Kevin; Mulzer, Wolfgang (2009), "Delaunay triangulations in O(sort(n)) time and more" (PDF), Proc. 50th IEEE Symposium on Foundations of Computer Science, pp. 139–148, doi:10.1109/FOCS.2009.53
  3. ^ Yao, Andrew Chi Chih (1982), "On constructing minimum spanning trees in k-dimensional spaces and related problems", SIAM Journal on Computing, 11 (4): 721–736, doi:10.1137/0211059, MR 0677663
  4. ^ Eppstein, David (1999), "Spanning trees and spanners" (PDF), in Sack, J.-R.; Urrutia, J. (eds.), Handbook of Computational Geometry, Elsevier, pp. 425–461
  5. ^ Mareš, Martin (2004), "Two linear time algorithms for MST on minor closed graph classes" (PDF), Archivum Mathematicum, 40 (3): 315–320
  6. ^ a b Agarwal, P. K.; Edelsbrunner, H.; Schwarzkopf, O.; Welzl, E. (1991), "Euclidean minimum spanning trees and bichromatic closest pairs", Discrete and Computational Geometry, Springer, 6 (1): 407–422, doi:10.1007/BF02574698
  7. ^ Chatterjee, S.; Connor, M.; Kumar, P. (2010), "Geometric minimum spanning trees with GeoFilterKruskal", in Festa, Paola (ed.), Symposium on Experimental Algorithms, Lecture Notes in Computer Science, vol. 6049, Springer-Verlag, pp. 486–500, doi:10.1007/978-3-642-13193-6_41
  8. ^ Smid, Michiel (May 2018), "The well-separated pair decomposition and its applications" (PDF), Handbook of Approximation Algorithms and Metaheuristics (2nd ed.), Chapman and Hall/CRC, doi:10.1201/9781351235426
  9. ^ Jaromczyk, J. W.; Toussaint, G. T. (1992), "Relative neighborhood graphs and their relatives", Proceedings of the IEEE, 80 (9): 1502–1517, doi:10.1109/5.163414
  10. ^ Toussaint, G. T. (1980), "Comment: Algorithms for computing relative neighborhood graph", Electronics Letters, 16 (22): 860, doi:10.1049/el:19800611; reply by Urquhart, pp. 860–861
  11. ^ Toussaint, G. T. (1980), "The relative neighborhood graph of a finite planar set", Pattern Recognition, 12 (4): 261–268, doi:10.1016/0031-3203(80)90066-7
  12. ^ Pless, Robert (Spring 2003), "Lecture 17: Voronoi Diagrams and Delauney Triangulations", Computational Geometry Class Page, Washington University, archived from the original on 2006-09-12
  13. ^ Sedgewick, Robert; Wayne, Kevin (Spring 2007), "Minimum Spanning Tree lecture notes" (PDF), Computer Science 226: Algorithms & Data Structures, Princeton University
  14. ^ Steele, J. Michael (1988), "Growth rates of Euclidean minimum spanning trees with power weighted edges" (PDF), The Annals of Probability, 16 (4): 1767–1787, doi:10.1214/aop/1176991596
  15. ^ Eades, Peter; Whitesides, Sue (1994), "The realization problem for Euclidean minimum spanning trees is NP-hard", Proc. 10th ACM Symposium on Computational Geometry, pp. 49–56, doi:10.1145/177424.177507

External links[]

Retrieved from ""