R-tree (Nearest Neighbor Search (NNS) Nearest Neighbor Search)
Revision as of 10:34, 15 February 2023 by Admin (talk | contribs) (Created page with "== Time Complexity == R-Tree construction: $O(n log n)$ NNS: $O(n)$ == Space Complexity == $O(log n)$ (https://www-sciencedirect-com.ezproxy.canberra.edu.au/science/article/pii/S1877050915019675, Table 2) == Description == == Approximate? == Exact == Randomized? == No, deterministic == Model of Computation == == Year == 1984 == Reference == http://www-db.deis.unibo.it/courses/SI-LS/papers/Gut84.pdf")
Time Complexity
R-Tree construction: $O(n log n)$ NNS: $O(n)$
Space Complexity
$O(log n)$
(https://www-sciencedirect-com.ezproxy.canberra.edu.au/science/article/pii/S1877050915019675, Table 2)
Description
Approximate?
Exact
Randomized?
No, deterministic
Model of Computation
Year
1984