Closest Pair Algorithm
Here we will discuss about the closest pair algorithm.
Input : A set p = { p1,p2, … pn} of n points in the plane (R2)
Notation d(pi , pj) = Euclidean distance.
d = x
Assumption - All points have distinct x-coordinates distinct y-coordinates.
Brute force method
Say you are given a set of points in the plane and you want to find the two points closest to one another.
[Read More]