コード例 #1
0
ファイル: convexhull.py プロジェクト: alexchao56/playground
def convex_hull_nlogn(pts):
    left_most = min(pts)
    #sort - O(nlog(n))
    sorted_pts = sorted(pts, cmp=functools.partial(compare, origin=left_most))
    hull = [left_most, sorted_pts.pop(0), sorted_pts.pop(0)]
    for pt in sorted_pts:#O(n)
        while find_left_right(Ln(hull[-1], hull[-2]), pt) < 0: #left turn
            hull.pop()
        hull.append(pt)
    return hull
コード例 #2
0
ファイル: intersect.py プロジェクト: rags/playground
def intersect(l1, l2):
    dir1, dir2 = find_left_right(l1, l2.pt1), find_left_right(l1, l2.pt2)
    return not ((dir1 > 0 and dir2 > 0) or (dir1 < 0 and dir2 < 0) or (dir1 == dir2 == 0))
コード例 #3
0
ファイル: intersect.py プロジェクト: benjamincrane/playground
def intersect(l1, l2):
    dir1, dir2 = find_left_right(l1, l2.pt1), find_left_right(l1, l2.pt2)
    return not ((dir1 > 0 and dir2 > 0) or (dir1 < 0 and dir2 < 0) or
                (dir1 == dir2 == 0))