HOME

TheInfoList



OR:

In computer science, the range searching problem consists of processing a set ''S'' of objects, in order to determine which objects from ''S'' intersect with a query object, called the ''range''. For example, if ''S'' is a set of points corresponding to the coordinates of several cities, find the subset of cities within a given range of latitudes and longitudes. The range searching problem and the
data structure In computer science, a data structure is a data organization, management, and storage format that is usually chosen for efficient access to data. More precisely, a data structure is a collection of data values, the relationships among them, a ...
s that solve it are a fundamental topic of
computational geometry Computational geometry is a branch of computer science devoted to the study of algorithms which can be stated in terms of geometry. Some purely geometrical problems arise out of the study of computational geometric algorithms, and such problems ar ...
. Applications of the problem arise in areas such as geographical information systems (GIS),
computer-aided design Computer-aided design (CAD) is the use of computers (or ) to aid in the creation, modification, analysis, or optimization of a design. This software is used to increase the productivity of the designer, improve the quality of design, improve c ...
(CAD) and databases.


Variations

There are several variations of the problem, and different data structures may be necessary for different variations. In order to obtain an efficient solution, several aspects of the problem need to be specified: * Object types: Algorithms depend on whether ''S'' consists of points,
line Line most often refers to: * Line (geometry), object with zero thickness and curvature that stretches to infinity * Telephone line, a single-user circuit on a telephone communication system Line, lines, The Line, or LINE may also refer to: Arts ...
s,
line segment In geometry, a line segment is a part of a straight line that is bounded by two distinct end points, and contains every point on the line that is between its endpoints. The length of a line segment is given by the Euclidean distance between ...
s, boxes, polygons.... The simplest and most studied objects to search are points. * Range types: The query ranges also need to be drawn from a predetermined set. Some well-studied sets of ranges, and the names of the respective problems are
axis-aligned rectangle A rectilinear polygon is a polygon all of whose polygon side, sides meet at right angles. Thus the interior angle at each vertex is either 90° or 270°. Rectilinear polygons are a special case of isothetic polygons. In many cases another def ...
s (orthogonal range searching), simplices, halfspaces, and spheres/ circles. * Query types: If the list of all objects that intersect the query range must be reported, the problem is called range reporting, and the query is called a ''reporting query''. Sometimes, only the number of objects that intersect the range is required. In this case, the problem is called ''range counting'', and the query is called a ''counting query''. The ''emptiness query'' reports whether there is at least one object that intersects the range. In the ''semigroup version'', a commutative semigroup (S,+) is specified, each point is assigned a weight from S, and it is required to report the semigroup sum of the weights of the points that intersect the range. * Dynamic range searching vs. static range searching: In the static setting the set ''S'' is known in advance. In dynamic setting objects may be inserted or deleted between queries. * Offline range searching: Both the set of objects and the whole set of queries are known in advance.


Data structures


Orthogonal range searching

In orthogonal range searching, the set ''S'' consists of n points in d dimensions, and the query consists of intervals in each of those dimensions. Thus, the query consists of a multi-dimensional
axis-aligned rectangle A rectilinear polygon is a polygon all of whose polygon side, sides meet at right angles. Thus the interior angle at each vertex is either 90° or 270°. Rectilinear polygons are a special case of isothetic polygons. In many cases another def ...
. With an output size of k, Jon Bentley used a
k-d tree In computer science, a ''k''-d tree (short for ''k-dimensional tree'') is a space-partitioning data structure for organizing points in a ''k''-dimensional space. ''k''-d trees are a useful data structure for several applications, such as search ...
to achieve (in
Big O notation Big ''O'' notation is a mathematical notation that describes the limiting behavior of a function when the argument tends towards a particular value or infinity. Big O is a member of a family of notations invented by Paul Bachmann, Edmund Lan ...
) O(n) space and O\big(n^ + k\big) query time. Bentley also proposed using range trees, which improved query time to O(\log^d n + k) but increased space to O(n\log^ n). Dan Willard used downpointers, a special case of fractional cascading to reduce the query time further to O(\log^ n + k). While the above results were achieved in the pointer machine model, further improvements have been made in the word RAM model of computation in low dimensions (2D, 3D, 4D). Bernard Chazelle used compress range trees to achieve O(\log n) query time and O(n) space for range counting. Joseph JaJa and others later improved this query time to O\left(\dfrac\right) for range counting, which matches a lower bound and is thus asymptotically optimal. As of 2015, the best results (in low dimensions (2D, 3D, 4D)) for range reporting found by
Timothy M. Chan Timothy Moon-Yew Chan is a Founder ProfessorTwo ...
, Kasper Larsen, and Mihai Pătrașcu, also using compressed range trees in the word RAM model of computation, are one of the following: * O(n) space, O(\log ^\epsilon n + k \log ^\epsilon n) query time * O(n \log \log n) space, O(\log \log n + k \log \log n) query time * O(n \log ^\epsilon n) space, O(\log \log n + k) query time In the orthogonal case, if one of the bounds is
infinity Infinity is that which is boundless, endless, or larger than any natural number. It is often denoted by the infinity symbol . Since the time of the ancient Greeks, the philosophical nature of infinity was the subject of many discussions amo ...
, the query is called three-sided. If two of the bounds are infinity, the query is two-sided, and if none of the bounds are infinity, then the query is four-sided.


Dynamic range searching

While in static range searching the set ''S'' is known in advance, dynamic range searching, insertions and deletions of points are allowed. In the incremental version of the problem, only insertions are allowed, whereas the decremental version only allows deletions. For the orthogonal case, Kurt Mehlhorn and Stefan Näher created a data structure for dynamic range searching which uses dynamic fractional cascading to achieve O(n \log n) space and O(\log n \log \log n + k) query time. Both incremental and decremental versions of the problem can be solved with O(\log n + k) query time, but it is unknown whether general dynamic range searching can be done with that query time.


Colored range searching

The problem of colored range counting considers the case where points have categorical attributes. If the categories are considered as colors of points in geometric space, then a query is for how many colors appear in a particular range. Prosenjit Gupta and others described a data structure in 1995 which solved 2D orthogonal colored range counting in O(n^2\log ^2 n) space and O(\log ^2 n) query time.


Applications

In addition to being considered in
computational geometry Computational geometry is a branch of computer science devoted to the study of algorithms which can be stated in terms of geometry. Some purely geometrical problems arise out of the study of computational geometric algorithms, and such problems ar ...
, range searching, and orthogonal range searching in particular, has applications for
range queries In data structures, a range query consists of preprocessing some input data into a data structure to efficiently answer any number of queries on any subset of the input. Particularly, there is a group of problems that have been extensively studie ...
in databases. Colored range searching is also used for and motivated by searching through categorical data. For example, determining the rows in a database of bank accounts which represent people whose age is between 25 and 40 and who have between $10000 and $20000 might be an orthogonal range reporting problem where age and money are two dimensions.


See also

* Range tree *
Range query A range query is a common database operation that retrieves all records where some value is between an upper and lower boundary. For example, list all employees with 3 to 5 years' experience. Range queries are unusual because it is not generally ...


References


Further reading

* *{{citation, first=Jiří, last=Matoušek, authorlink=Jiří Matoušek (mathematician), title=Geometric range searching, journal=
ACM Computing Surveys ''ACM Computing Surveys'' is a quarterly peer-reviewed scientific journal published by the Association for Computing Machinery. It publishes survey articles and tutorials related to computer science and computing. The journal was established in 196 ...
, volume=26, issue=4, pages=421–461, year=1994, doi=10.1145/197405.197408, s2cid=17729301, url=https://refubium.fu-berlin.de/handle/fub188/17795. Geometric data structures Database theory