An open API service indexing awesome lists of open source software.

https://github.com/levongh/graham_convex_hull

Graham's scan is a method of finding the convex hull of a finite set of points in the plane with time complexity O(n log n).
https://github.com/levongh/graham_convex_hull

Last synced: 10 months ago
JSON representation

Graham's scan is a method of finding the convex hull of a finite set of points in the plane with time complexity O(n log n).

Awesome Lists containing this project

README

          

# graham_convex_hull
Graham's scan is a method of finding the convex hull of a finite set of points in the plane with time complexity O(n log n).
The algorithm finds all vertices of the convex hull ordered along its boundary. It uses a stack to detect and remove concavities
in the boundary efficiently.