So if this is true: How to query a Voronoi diagram?
The question "Which site does a given point belong to?" is just another way of stating the nearest neighbor search problem: the relevant Voronoi polygon is the one associated with the nearest point in the set generating the Voronoi diagram. Unfortunately,
- there isn't any constant time algorithm for solving this problem, and
- the Voronoi diagram doesn't provide any solving the problem faster than an O(N) search.
How do we actually use them?
I mean, I am aware of the Delaunay-based search tree that I can construct for it, but I don't need a Voronoi diagram to construct a Delaunay Triangulation now, do I?
So what practical purposes - except, say, printing it on a map for easier human digestion - does Voronoi serve?
What problems can be solved with just a Voronoi Diagram without its dual (in a more efficient manner than without it, of course)?