A geometric spanner or a -spanner graph or a -spanner was initially introduced as a weighted graph over a set of points as its vertices for which there is a -path between any pair of vertices for a fixed parameter . A -path is defined as a path through the graph with weight at most times the spatial distance between its endpoints. The parameter is called the stretch factor or dilation factor of the spanner.
In computational geometry, the concept was first discussed by L.P. Chew in 1986, although the term "spanner" was not used in the original paper.
The notion of graph spanners has been known in graph theory: -spanners are spanning subgraphs of graphs with similar dilation property, where distances between graph vertices are defined in graph-theoretical terms. Therefore geometric spanners are graph spanners of complete graphs embedded in the plane with edge weights equal to the distances between the embedded vertices in the corresponding metric.
Spanners may be used in computational geometry for solving some proximity problems. They have also found applications in other areas, such as in motion planning, telecommunication networks, network reliability, optimization of roaming in mobile networks, etc.
There are different measures which can be used to analyze the quality of a spanner. The most common measures are edge count, total weight and maximum vertex degree. Asymptotically optimal values for these measures are
O(n)
O(MST)
O(1)
Finding a spanner in the Euclidean plane with minimal dilation over n points with at most m edges is known to be NP-hard.
Many spanner algorithms exist which excel in different quality measures. Fast algorithms include the WSPD spanner and the Theta graph which both construct spanners with a linear number of edges in
O(nlogn)
See main article: Theta graph. The Theta graph or
\Theta
\Theta
\Theta
See main article: Greedy geometric spanner. The greedy spanner or greedy graph is defined as the graph resulting from repeatedly adding an edge between the closest pair of points without a t-path. Algorithms which compute this graph are referred to as greedy spanner algorithms. From the construction it trivially follows that the greedy graph is a t-spanner.
The greedy spanner was first described in the PhD thesis of Gautam Das and conference paper and subsequent journal paper by Ingo Althöfer et al. These sources also credited Marshall Bern (unpublished) with the independent discovery of the same construction.
The greedy spanner achieves asymptotically optimal edge count, total weight and maximum vertex degree and also performs best on these measures in practice.It can be constructed in
O(n2logn)
O(n2)
Chew's main result was that for a set of points in the plane there is a triangulation of this pointset such that for any two points there is a path along the edges of the triangulation with length at most
\sqrt{10}
The best upper bound known for the Euclidean Delaunay triangulation is that it is a
1.998
{{\pi}/2}
See main article: Well-separated pair decomposition. A spanner may be constructed from a well-separated pair decomposition in the following way. Construct the graph with the point set
S
\{A,B\}
a\inA
b\inB
It is possible to obtain an arbitrary value for
t