Jump to content

Range tree: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Corrected query time complexity
Line 7: Line 7:
== External links ==
== External links ==
* [http://www.emilstefanov.net/Projects/RangeSearchTree.aspx A C# Implementation of a Range Tree]
* [http://www.emilstefanov.net/Projects/RangeSearchTree.aspx A C# Implementation of a Range Tree]
* [http://www.cgal.org/ CGAL : Computational Geometry Algorithms Library in C++] contains a robust implementation of Range Trees


== References ==
== References ==

Revision as of 09:20, 2 April 2009

In computer science, a range tree is an ordered tree data structure to hold a list of points. It allows all points within a given range to be efficiently retrieved, and is typically used in two or higher dimensions.

It is similar to a kd-tree except with faster query times of O(logd n + k) but worse storage of O(n log(d-1) n), with d being the dimension of the space, n being the number of points in the tree, and k being the number of points retrieved for a given query.

Range trees may be contrasted with interval trees: instead of storing points and allowing points in a given range to be retrieved efficiently, it stores intervals and allows the intervals containing a given point to be retrieved efficiently.

References