python - 凸包中点之间的最大距离

标签 python algorithm python-2.7 convex-hull

我正在解决一个问题,我需要找到平面 (2D) 上两点之间的最大距离。所以有一种 O(n^2) 方法,我可以在其中计算图中每个点之间的距离。我还实现了一个凸包算法,现在我的方法是在 O(nlogn) 中计算凸包,然后使用 O(n^2) 算法计算凸包中点之间的最大距离。有没有比这更好的方法来计算凸包中的最大距离

这是我的算法:

O(n^2)

 def d(l1,l2):
    return ((l2[0]-l1[0])**2+(l2[1]-l1[1])**2)
def find_max_dist(L):
    max_dist = d(L[0], L[1])
    for i in range(0, len(L)-1):
        for j in range(i+1, len(L)):
            max_dist = max(d(L[i], L[j]), max_dist)
    return max_dist

convex hull

def convex_hull(points):
    """Computes the convex hull of a set of 2D points.

       Input: an iterable sequence of (x, y) pairs representing the points.
       Output: a list of vertices of the convex hull in counter-clockwise order,
       starting from the vertex with the lexicographically smallest coordinates.
       Implements Andrew's monotone chain algorithm. O(n log n) complexity.
"""

      # Sort the points lexicographically (tuples are compared lexicographically).
      # Remove duplicates to detect the case we have just one unique point.
        points = sorted(set(points))

      # Boring case: no points or a single point, possibly repeated multiple times.
    if len(points) <= 1:
        return points

    # 2D cross product of OA and OB vectors, i.e. z-component of their 3D cross product.
    # Returns a positive value, if OAB makes a counter-clockwise turn,
    # negative for clockwise turn, and zero if the points are collinear.
    def cross(o, a, b):
        return (a[0] - o[0]) * (b[1] - o[1]) - (a[1] - o[1]) * (b[0] - o[0])

    # Build lower hull
    lower = []
    for p in points:
        while len(lower) >= 2 and cross(lower[-2], lower[-1], p) <= 0:
            lower.pop()
        lower.append(p)

    # Build upper hull
    upper = []
    for p in reversed(points):
        while len(upper) >= 2 and cross(upper[-2], upper[-1], p) <= 0:
            upper.pop()
        upper.append(p)

    # Concatenation of the lower and upper hulls gives the convex hull.
    # Last point of each list is omitted because it is repeated at the beginning of the other list.
    return lower[:-1] + upper[:-1]

overall algorithm

 l=[]
 for i in xrange(int(raw_input())):   # takes input denoting number  of points in the plane
     n=tuple(int(i) for i in raw_input().split())  #takes each point and makes a tuple
     l.append(n)                                # appends to n

 if len(l)>=10:
        print find_max_dist(convex_hull(l))
 else:
        print find_max_dist(l)

现在我该如何改进我的方法的运行时间,有没有更好的方法来计算它?

最佳答案

一旦有了凸包,就可以在线性时间内找到两个最远的点。

想法是保留两个指针:其中一个指向当前边(并且总是递增一个),另一个指向一个顶点。

答案是边的端点与所有边的顶点之间的最大距离。

可以证明(证明既不短也不平凡,所以我不会在这里发布)如果我们在移动第一个指针后每次都继续增加第二个指针,只要它增加了线之间的距离通过边和顶点,我们将找到最佳答案。

关于python - 凸包中点之间的最大距离,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40056061/

相关文章:

python - 如何用两点画一条线,然后用opencv,python画线直到到达轮廓点?

python - 在 osx mavericks 上安装 python 模块 lxml 时出错

python - 如何在nosetests中使用正则表达式(即-m)在夹具中选择一些测试方法?

python - OpenCV 错误:错误:(-215)scn == 3 ||函数 cv::cvtColor 中的 scn == 4

python - 将 C 结构转换为 ctypes.Structure 的工具?

javascript - 以正确的方式使用javascript将动态表单添加到django formset

c++ - 将两个二进制数组与阈值进行比较(近似匹配)

c++ - 查找数组中一组数字的起点和终点

c++ - 从两个 N 位数字的乘积中找出回文

python-2.7 - 有什么方法可以使用 pybrain 编写最终权重(在所有时期完成后)?