Input: list of 2d points (x,y) where x and y are integers.
Distance: distance is defined as the Manhattan distance.
ie:
def dist(p1,p2)
return abs(p1.x-p2.x) + abs(p1.y - p2.y)
他のすべてのポイントに最も近いポイントを見つけるための効率的なアルゴリズムは何ですか。
私はブルートフォースO(n ^ 2)ソリューションしか考えられません:
minDist=inf
bestPoint = null
for p1 in points:
dist = 0
for p2 in points:
dist+=distance(p1,p2)
minDist = min(dist,minDist)
bestPoint = argmin(p1, bestPoint)
基本的にポイントのすべてのペアを見てください。