-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Geometry
Mission Peace edited this page Oct 16, 2017
·
3 revisions
- Given points with x and y coordinates. Find distance between closest pair of points among the given points. ClosestPairOfPoints.java
- Given skyline of city with overlapping buildings. Merge the buildings. SkylineDrawing.java
skylinedrawing.py - Given n points on a 2D plane, find the maximum number of points that lie on the same straight line - MaximumPointsOnSameLine.java
- Find convex hull using Jarvis march algorithm. JarvisMarchConvexHull.java
- Find convex hull using Graham scan algorithm. GrahamScanConvexHull.java