HOME

TheInfoList



OR:

In
computer science Computer science is the study of computation, automation, and information. Computer science spans theoretical disciplines (such as algorithms, theory of computation, information theory, and automation) to practical disciplines (includin ...
, 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
latitude In geography, latitude is a coordinate that specifies the north– south position of a point on the surface of the Earth or another celestial body. Latitude is given as an angle that ranges from –90° at the south pole to 90° at the north po ...
s and
longitude Longitude (, ) is a geographic coordinate that specifies the east– west position of a point on the surface of the Earth, or another celestial body. It is an angular measurement, usually expressed in degrees and denoted by the Greek let ...
s. 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 Efficiency, efficient Data access, access to data. More precisely, a data structure is a collection of data values, the rel ...
s that solve it are a fundamental topic of computational geometry. Applications of the problem arise in areas such as
geographical information systems A geographic information system (GIS) is a type of database containing geographic data (that is, descriptions of phenomena for which location is relevant), combined with software tools for managing, analyzing, and visualizing those data. In a ...
(GIS), computer-aided design (CAD) and
database In computing, a database is an organized collection of data stored and accessed electronically. Small databases can be stored on a file system, while large databases are hosted on computer clusters or cloud storage. The design of databases spa ...
s.


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: Art ...
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,
polygon In geometry, a polygon () is a plane figure that is described by a finite number of straight line segments connected to form a closed '' polygonal chain'' (or ''polygonal circuit''). The bounded plane region, the bounding circuit, or the two t ...
s.... 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 rectangles (orthogonal range searching), simplices, halfspaces, and
sphere A sphere () is a Geometry, geometrical object that is a solid geometry, three-dimensional analogue to a two-dimensional circle. A sphere is the Locus (mathematics), set of points that are all at the same distance from a given point in three ...
s/
circle A circle is a shape consisting of all points in a plane that are at a given distance from a given point, the centre. Equivalently, it is the curve traced out by a point that moves in a plane so that its distance from a given point is const ...
s. * 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 In mathematics, a binary operation is commutative if changing the order of the operands does not change the result. It is a fundamental property of many binary operations, and many mathematical proofs depend on it. Most familiar as the name o ...
semigroup In mathematics, a semigroup is an algebraic structure consisting of a Set (mathematics), set together with an associative internal binary operation on it. The binary operation of a semigroup is most often denoted multiplication, multiplicatively ...
(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. With an output size of k, Jon Bentley used a k-d tree to achieve (in Big O notation) 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 Dan Edward Willard is an American computer scientist and logician, and is a professor of computer science at the University at Albany. Education and career Willard did his undergraduate studies in mathematics at Stony Brook University, graduating ...
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 computer science, and more specifically in computability theory and computational complexity theory, a model of computation is a model which describes how an output of a mathematical function is computed given an input. A model describes h ...
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 In computer science, an algorithm is said to be asymptotically optimal if, roughly speaking, for large inputs it performs at worst a constant factor (independent of the input size) worse than the best possible algorithm. It is a term commonly en ...
. As of 2015, the best results (in low dimensions (2D, 3D, 4D)) for range reporting found by Timothy M. Chan, 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 am ...
, 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, 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
database In computing, a database is an organized collection of data stored and accessed electronically. Small databases can be stored on a file system, while large databases are hosted on computer clusters or cloud storage. The design of databases spa ...
s. 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


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