Convex Hull:
The convex hull of a set S of points in the plane is defined to be the smallest convex polygon containing all the points of S. we can define a polygon to be convex if for only two points p1 and p2 inside the polygon, the directed line segment from p1 to p2 is fully contained in the polygon
The main objective is to design a convex polygon path where a set of points are given. There are some algorithms to design the polygon, they are
The convex hull of a set S of points in the plane is defined to be the smallest convex polygon containing all the points of S. we can define a polygon to be convex if for only two points p1 and p2 inside the polygon, the directed line segment from p1 to p2 is fully contained in the polygon
The main objective is to design a convex polygon path where a set of points are given. There are some algorithms to design the polygon, they are
- Brute force (Read More)
- Quick hull
- Graham's scan
- Jarvis's march(gift wrapping)
- Divide-and-Conquer
- Chan's algorithm(output sensitivity)
- Incremental
- Monotone Chain
No comments:
Post a Comment