Starting from the root node, DFS visits the child nodes
in a certain order. More specifically, the order is determined by the
of each node from the
query point
, where
is the minimum distance between
and the node's minimum bounding
rectangle (MBR). When a leaf node is reached, the objects are retrieved and the list of nearest neighbor
candidates is updated. Let
be the distance of
nearest neighbor from
, clearly the algorithm
does not need to visit any node
and its child entries if
.
Fig. (a) illustrates an example of a nearest neighbor query:
are the spatial objects and
is the query point. Fig.
(b) shows the corresponding R-tree, including the root,
intermediate nodes
and
and leaf nodes
and
. The algorithm first visits node
because
. Then, DFS visits node
(because
).
It computes the
of the object
and
in node
and inserts
in the
nearest neighbor candidate list
. DFS next visits the node
but does not find a better candidate than
. Next node visited is
. Since
, DFS visits the node
and finds
object
that is closer to
than
, so it replaces
with
in
. The next node
to be visited is
, DFS prunes it because
. There is no other node to
be visited so DFS reports
as the final answer. Table
shows the nodes in the order they
were processed by DFS algorithm.
Muhammad Aamir Cheema 2007-10-11