Download COMP 4045 - Computational Geometry

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Lie sphere geometry wikipedia , lookup

Projective plane wikipedia , lookup

Euclidean geometry wikipedia , lookup

Duality (projective geometry) wikipedia , lookup

Line (geometry) wikipedia , lookup

Transcript
COMP 4045 - Computational Geometry Assignment 3
1. Prove that for any n > 3 there is a set of n sites in the plane such that one of the
Voronoi region has n-1 vertices. (Exercises 7.1).
2. Let P be a set of n points in the plane. Give an O(nlogn) time algorithm to find two
points in P that are closest together. (Exercises 7.10).
a) Design an algorithm;
b) Prove its correctness;
c) Show its time complexity.
3. The idea of Voronoi Diagram can be further extended. For instance, k nearest points is
required in some cases instead of the nearest one. This problem is known as “order-k
Voronoi Diagram”. (please make clear acknowledgement of any previous work)
a) Design an algorithm;
b) Prove its correctness;
c) Show its time and storage complexity.