Skip to content

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).

Notifications You must be signed in to change notification settings

levongh/graham_convex_hull

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

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.

About

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).

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages