Handouts: Handout on Voronoi diagrams (on web)
4/14/08: More on Voronoi diagrams and Delaunay diagrams
We reviewed more properties of Delaunay diagrams, including
the fact that the MST is a subgraph, etc. I reviewed the Kruskal
MST algorithm and did an example. See handout and text.
Discussion of geometric TSP: it is "NP-hard"
to solve optimally. 2-approximation (double MST and
shortcut to get a tour), 1.5-approximation of Christofides,
and 1+epsilon approximation of Arora/Mitchell (a "PTAS":
Polynomial-Time Approximation Scheme).
Bottom line: For any FIXED epsilon and FIXED dimension d,
one can find an approximately optimal TSP tour,
within a factor 1+epsilon of optimal, on
a set of n points in d dimensions in time O(n log n).
WARNING: The "big Oh" hides an enormous constant that depends
on epsilon and d.