Question
The convex hull of a set of 4 points in a 2-dimensional Euclidean space is the (convex) set of points enclosed by the polygon defined
The convex hull of a set of 4 points in a 2-dimensional Euclidean space is the (convex) set of points enclosed by the polygon defined by lines passing through pairs of these points. Namely, if all points are collinear their convex hull is a line segment; if one point lies in the interior of the triangle formed by the other 3 points then the convex hull is the triangle itself; otherwise, it is a quadrilateral. Define the convex hull distance between four points in a 2-dimensional Euclidean space as: chd4(p1, p2, p3, p4) = the perimeter of the convex hull formed by p1, p2, p3, and p4. Given n points in a two-dimensional Euclidean space, design an efficient algorithm that returns the minimum chd4 and the corresponding four points. Analyze the running time of your algorithm
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started