将一对元组与元组对列表进行比较

Gar*_*ary 1 python tuples list python-3.6

所以我正在编写这个编程作业,我目前只是将一个元组中的值对与列表中的元组对进行比较.

这些对基本上是x和y坐标,我需要找到从列表到元组对中最接近的一个.作为一个例子,给定点(-4, 3)和列表[(10, 6), (1, 7), (6, 3), (1, 9)],最接近的是(1, 7).

这些数字总是随着编程的随机部分而改变,但是上面的定义是一个函数.这是整个事情:

def nearest(point, more_points):
    '''
    Finds the nearest point to the base point
    '''
    (x, y) = point
    for i, j in more_points:
        a = math.fabs(x - i)
        tempI = i
        b = math.fabs(y - j)
        tempJ = j
        tempA, tempB = a , b
        if min(tempA) <  a:

point = () 
my_points = []
c = 0
lpoint = list(point)
while c < 2:
     lpoint.append(random.randrange(-5,5,1)) # generate the "point"
     c += 1
tpoint = tuple(lpoint)
c = 0
colx = [] # x points
coly = [] # y points
# generate the points
while c < 4:
    colx.append(random.randint(0,10))
    coly.append(random.randint(0,10))
    c += 1

my_point = list(zip(colx,coly))
print(my_point)
the_nearest = nearest(tpoint,my_point)
print(the_nearest)
Run Code Online (Sandbox Code Playgroud)

我想要做的是在点上取x,y然后取"其他"点并得到差异,然后使用它来找到"最近的",但我输了但是我被卡住了.重点是用户定义的功能.

Fun*_*ayu 5

假设以下函数计算2点内的距离:

def distance(point_a, point_b):
    """Returns the distance between two points."""
    x0, y0 = point_a
    x1, y1 = point_b
    return math.fabs(x0 - x1) + math.fabs(y0 - y1)
Run Code Online (Sandbox Code Playgroud)

您可以迭代所有点并找到最小距离:

def nearest(point, all_points):
    closest_point, best_distance = None, float("inf")
    for other_point in all_points:
        d = distance(point, other_point)
        if d < best_distance:
             closest_point, best_distance = other_point, d
    return closest_point
Run Code Online (Sandbox Code Playgroud)

虽然我可以想出一个更加pythonic的方法:

def nearest(point, all_points):
    """Returns the closest point in all_points from the first parameter."""
    distance_from_point = functools.partial(distance, point)
    return min(all_points, key=distance_from_point)
Run Code Online (Sandbox Code Playgroud)

上述解决方案的总体思路是构建部分功能.此部分函数采用单个参数并返回到作为参数给定的点的距离.这可以重写,lambda other_point: distance(point, other_point)但这更漂亮.

请注意,ValueError如果使用空列表列表调用上述函数,则会引发上述函数:nearest(point, []).如有必要,您可以为此案例添加if.