Given a set of points
and a query point
, a
farthest neighbor query
is to find a result set
which contains
objects such that for any
and for
any
,
. The continuous monitoring of
farthest
neighbors (
FN) is to continuously update the results affected by the movement
of query point
and data points
.
Farthest neighbor queries have various applications. A farthest neighbor query
determines the minimum radius of the circle centered at
which will cover all the
data points in
. Similarly, a
farthest neighbors query can be issued to find
the minimum radius of the circle around
so that only
points lie outside the
circle. Consider another application where a team of commandos is on a mission and the
leader wants that no member of the team is more than 10km away from him. Clearly, the
members who are farther from him needs more of his attention. He might be
interested in
farthest team members so that he can monitor their activities and can
advise them not to move too far from him.
[A farthest neighbor query] |