- Gift wrapping algorithm
The gift wrapping algorithm is a simple
algorithm for computing theconvex hull of a given set of points.Planar case
In the two-dimensional case the algorithm is also known as Jarvis march, after R. A. Jarvis, who published it in 1973; it has O("nh")
time complexity , where "n" is the number of points and "h" is the number of points on the convex hull. Its real-life performance compared with other convex hull algorithms is favorable when n is small or h is expected to be very small with respect to n. In general cases the algorithm is outperformed by many others.Algorithm
For the sake of simplicity, the description below assumes that the points are in
general position , i.e., no three points arecollinear . The algorithm may be easily modified to deal with collinearity, including the choice whether it should report onlyextreme point s (vertices of the convex hull) or all points that lie on the convex hull. Also, the complete implementation must deal withdegenerate case s when the convex hull has only 1 or 2 vertices, as well as with the issues of limitedarithmetic precision , both of computer computations and input data. The gift wrapping algorithm begins with "i"=0 and a point "p0" known to be on the convex hull, e.g., the leftmost point, and selects the point "pi+1" such that all points are to the right of the line "pi pi+1". This point may be found on O("n") time by comparing polar angles of all points with respect to point "p0" taken for the center ofpolar coordinates . Letting "i"="i"+1, and repeating with until one reaches "ph"="p0" again yields the convex hull in "h" steps. The gift wrapping algorithm is exactly analogous to the process of winding a string (or wrapping paper) around the set of points.def jarvis(P) i = 0 p [0] = leftmost point of P do p [i+1] = point such that all other points in P are to the right of the line p [i] p [i+1] i = i + 1 while p [i] != p [0] return p
The approach is extendable to higher dimensions.
References
*
*cite journal
author = Jarvis, R. A.
title = On the identification of the convex hull of a finite set of points in the plane
journal =Information Processing Letters
volume = 2
year = 1973
pages = 18–21
doi = 10.1016/0020-0190(73)90020-3ee also
*
Computational geometry
*Convex hull
*Graham scan
*Chan's algorithm
Wikimedia Foundation. 2010.