Create non-intersecting polygon passing through all given points
Our strategy is to make a plan where we are sure that the polygon includes all points, and that we can find an order to connect them where none of the lines intersect. Algorithm: Find the leftmost points p Find the rightmost point q Partition the points into A, the set of points below pq, … Read more