The detailed
NN computation algorithm is shown in Algorithm
.
In the algorithm, the cells
in a round are maintained in a heap
so that
they are accessed in ascending order of their
. Initially, all
cells of round
are inserted into a heap. In each iteration, if the
top entry
of the heap with
not smaller than
(
, initially), it is immediately known that
NN have been found and
the computation terminates. Otherwise,
is computed for every data
point
and
and
are updated if
is
smaller than
. After all the cells in the heap are processed, the
current radius
is checked with
. If
is smaller than
, all the cells in the next round with radius as
are collected. Among them, the cells which were not
processed before (i.e.,
is not in their influence list) are inserted into
the heap and examined in the same way till
NN are found.
Lemma
In a grid consisting of cells with size
, given a cell
and a query point
where
does not contain
,
.
According to Lemma, a cell is intersected by at most two
consecutive circles (e.g., the dark shaded cells in Fig. ).
Although these cells are encountered twice during
NN computation (i.e.,
these cells appear in two rounds), they are accessed once
only. This is because for a query
(1) our
NN algorithm only accesses the
cells where
is not in their influence lists; and (2)
will be inserted
into its influence list after a cell is accessed. In fact,
Theorem
proves the upper bound of the total number of times the
cells are encountered in our algorithm.
Theorem
In
NN algorithm, the total number of times the cells are encountered is
at most
times of the number cells in the minimum set of cells.
Proof
Let
be
and
be the number of cells in round
. The total number of times the cells are encountered is at most
and the number of cells in the minimum set of cells is at least
. As a
result, the ratio of them is at most
.
Muhammad Aamir Cheema 2007-10-11