Initial computation of
farthest neighbors is very similar to the computation of
nearest neighbors. The algorithm initially calls CircularTrip with radius set as
where
is the maximum distance of
from the region in which the farthest neighbors are to
be found. As opposed to nearest neighbor queries, the cells returned by CircularTrip
are inserted in a heap according to their
from
. The cells
are visited in descending order of their
and the radius of CircularTrip is
decreased by
everytime. Let
be the distance between
and
farthest
neighbor found so far, the algorithm stops when the radius of CircularTrip becomes smaller
than or equal to
.