Closest pair of points problem is well-known in computational geometry:given a list of points (x, y) find the pair of points that has the smallest Euclidean distance. Now I have a variation of this problem to ask: given a list of n points (xi,yi) (n+1>i>0), find the nearest Euclidean distance for each point (xi, yi), and then calculate the average nearest Euclidean distance for all the points. I know the brute-force method:
all_distance = [];
for i= 1 to n
p = (xi,yi);
dis = [];
for j= 1 to n
if j==i
continue;
else
q = (xj,yj);
pt_dis = distance(p,q);
end
dis = [dis; pt_dis];
end
all_distance = [all_distance; nearest(dis)]
end
mean_distance = all_distance/n;
This method is straightforward but rather slow to compute. I was wondering whether there are some quick algorithms to solve this problem. Thanks!