Range query (computer science)

From testwiki
Jump to navigation Jump to search

Template:For Template:Tone

In computer science, the range query problem consists of efficiently answering several queries regarding a given interval of elements within an array. For example, a common task, known as range minimum query, is finding the smallest value inside a given range within a list of numbers.

Definition

Given a function f that accepts an array, a range query fq(l,r) on an array a=[a1,..,an] takes two indices l and r and returns the result of f when applied to the subarray [al,,ar]. For example, for a function sum that returns the sum of all values in an array, the range query sumq(l,r) returns the sum of all values in the range [l,r].Template:Citation needed

Solutions

Prefix sum array

Template:Main

Range sum queries may be answered in constant time and linear space by pre-computing an array Template:Mvar of same length as the input such that for every index Template:Mvar, the element Template:Mvar is the sum of the first Template:Mvar elements of Template:Mvar. Any query may then be computed as follows: sumq(l,r)=prpl1.

This strategy may be extended to any other binary operation f whose inverse function f1 is well-defined and easily computable.[1] It can also be extended to higher dimensions with a similar pre-processing.[2] For example, if Template:Mvar contains the sum of the first Template:Math elements of Template:Mvar, then sumq(l,r,t,b)=pr,bpl1,bpr,t1+pl1,t1.

Dynamic range queries

A more difficult subset of the problem consists of executing range queries on dynamic data; that is, data that may mutate between each query. In order to efficiently update array values, more sophisticated data structures like the segment tree or Fenwick tree are necessary.Template:Citation needed

Examples

Semigroup operators

Constructing the corresponding Cartesian tree to solve a range minimum query.
Range minimum query reduced to the lowest common ancestor problem.

Template:Main

When the function of interest in a range query is a semigroup operator, the notion of f1 is not always defined, so the strategy in the previous section does not work. Andrew Yao showed[3] that there exists an efficient solution for range queries that involve semigroup operators. He proved that for any constant Template:Mvar, a pre-processing of time and space Θ(cn) allows to answer range queries on lists where Template:Mvar is a semigroup operator in θ(αc(n)) time, where αc is a certain functional inverse of the Ackermann function.

There are some semigroup operators that admit slightly better solutions. For instance when f{max,min}. Assume f=min then min(A[1..n]) returns the index of the minimum element of A[1..n]. Then mini,j(A) denotes the corresponding minimum range query. There are several data structures that allow to answer a range minimum query in O(1) time using a pre-processing of time and space O(n). One such solution is based on the equivalence between this problem and the lowest common ancestor problem.

The Cartesian tree TA of an array A[1,n] has as root ai=min{a1,a2,,an} and as left and right subtrees the Cartesian tree of A[1,i1] and the Cartesian tree of A[i+1,n] respectively. A range minimum query mini,j(A) is the lowest common ancestor in TA of ai and aj. Because the lowest common ancestor can be solved in constant time using a pre-processing of time and space O(n), range minimum query can as well. The solution when f=max is analogous. Cartesian trees can be constructed in linear time.

Mode

Template:Main

The mode of an array is the element that appears the most in it. For instance the mode of a=[4,5,6,7,4] is Template:Val. In case of a tie, any of the most frequent elements might be picked as the mode. A range mode query consists in pre-processing A[1,n] such that we can find the mode in any range of A[1,n]. Several data structures have been devised to solve this problem, we summarize some of the results in the following table.[1]

Range Mode Queries
Space Query Time Restrictions
O(n22ϵ) O(nϵlogn) 0ϵ12
O(n2loglognlogn) O(1)

Recently Jørgensen et al. proved a lower bound on the cell-probe model of Ω(lognlog(Sw/n)) for any data structure that uses Template:Mvar cells.[4]

Median

This particular case is of special interest since finding the median has several applications.[5] On the other hand, the median problem, a special case of the selection problem, is solvable in O(n), using the median of medians algorithm.[6] However its generalization through range median queries is recent.[7] A range median query median(A,i,j) where A,i and j have the usual meanings returns the median element of A[i,j]. Equivalently, median(A,i,j) should return the element of A[i,j] of rank ji2. Range median queries cannot be solved by following any of the previous methods discussed above including Yao's approach for semigroup operators.[8]

There have been studied two variants of this problem, the offline version, where all the k queries of interest are given in a batch, and a version where all the pre-processing is done up front. The offline version can be solved with O(nlogk+klogn) time and O(nlogk) space.

The following pseudocode of the quickselect algorithm shows how to find the element of rank Template:Mvar in A[i,j] an unsorted array of distinct elements, to find the range medians we set r=ji2.[7]

rangeMedian(A, i, j, r) {
    if A.length() == 1
        return A[1]

    if A.low is undefined then
        m = median(A)
        A.low  = [e in A | e <= m]
        A.high = [e in A | e > m ]

    calculate t the number of elements of A[i, j] that belong to A.low

    if r <= t then
        return rangeMedian(A.low, i, j, r)
    else
        return rangeMedian(A.high, i, j, r-t)
}

Procedure Template:Code partitions Template:Code, using Template:Code's median, into two arrays Template:Code and Template:Code, where the former contains the elements of Template:Code that are less than or equal to the median Template:Code and the latter the rest of the elements of Template:Code. If we know that the number of elements of A[i,j] that end up in Template:Code is Template:Code and this number is bigger than Template:Code then we should keep looking for the element of rank Template:Code in Template:Code; otherwise we should look for the element of rank (rt) in Template:Code. To find Template:Mvar, it is enough to find the maximum index mi1 such that am is in Template:Code and the maximum index lj such that al is in Template:Code. Then t=lm. The total cost for any query, without considering the partitioning part, is logn since at most logn recursion calls are done and only a constant number of operations are performed in each of them (to get the value of Template:Mvar fractional cascading should be used). If a linear algorithm to find the medians is used, the total cost of pre-processing for Template:Mvar range median queries is nlogk. The algorithm can also be modified to solve the online version of the problem.[7]

Majority

Finding frequent elements in a given set of items is one of the most important tasks in data mining. Finding frequent elements might be a difficult task to achieve when most items have similar frequencies. Therefore, it might be more beneficial if some threshold of significance was used for detecting such items. One of the most famous algorithms for finding the majority of an array was proposed by Boyer and Moore [9] which is also known as the Boyer–Moore majority vote algorithm. Boyer and Moore proposed an algorithm to find the majority element of a string (if it has one) in O(n) time and using O(1) space. In the context of Boyer and Moore’s work and generally speaking, a majority element in a set of items (for example string or an array) is one whose number of instances is more than half of the size of that set. Few years later, Misra and Gries [10] proposed a more general version of Boyer and Moore's algorithm using O(nlog(1τ)) comparisons to find all items in an array whose relative frequencies are greater than some threshold 0<τ<1. A range τ-majority query is one that, given a subrange of a data structure (for example an array) of size |R|, returns the set of all distinct items that appear more than (or in some publications equal to) τ|R| times in that given range. In different structures that support range τ-majority queries, τ can be either static (specified during pre-processing) or dynamic (specified at query time). Many of such approaches are based on the fact that, regardless of the size of the range, for a given τ there could be at most O(1/τ) distinct candidates with relative frequencies at least τ. By verifying each of these candidates in constant time, O(1/τ) query time is achieved. A range τ-majority query is decomposable [11] in the sense that a τ-majority in a range R with partitions R1 and R2 must be a τ-majority in either R1or R2. Due to this decomposability, some data structures answer τ-majority queries on one-dimensional arrays by finding the Lowest common ancestor (LCA) of the endpoints of the query range in a Range tree and validating two sets of candidates (of size O(1/τ)) from each endpoint to the lowest common ancestor in constant time resulting in O(1/τ) query time.

Two-dimensional arrays

Gagie et al.[12] proposed a data structure that supports range τ-majority queries on an m×n array A. For each query Q=(R,τ) in this data structure a threshold 0<τ<1 and a rectangular range R are specified, and the set of all elements that have relative frequencies (inside that rectangular range) greater than or equal to τ are returned as the output. This data structure supports dynamic thresholds (specified at query time) and a pre-processing threshold α based on which it is constructed. During the pre-processing, a set of vertical and horizontal intervals are built on the m×n array. Together, a vertical and a horizontal interval form a block. Each block is part of a superblock nine times bigger than itself (three times the size of the block's horizontal interval and three times the size of its vertical one). For each block a set of candidates (with 9α elements at most) is stored which consists of elements that have relative frequencies at least α9 (the pre-processing threshold as mentioned above) in its respective superblock. These elements are stored in non-increasing order according to their frequencies and it is easy to see that, any element that has a relative frequency at least α in a block must appear its set of candidates. Each τ-majority query is first answered by finding the query block, or the biggest block that is contained in the provided query rectangle in O(1) time. For the obtained query block, the first 9τ candidates are returned (without being verified) in O(1/τ) time, so this process might return some false positives. Many other data structures (as discussed below) have proposed methods for verifying each candidate in constant time and thus maintaining the O(1/τ) query time while returning no false positives. The cases in which the query block is smaller than 1/α are handled by storing log(1α) different instances of this data structure of the following form:

β=2i,i{1,,log(1α)}

where β is the pre-processing threshold of the i-th instance. Thus, for query blocks smaller than 1/α the log(1/τ)-th instance is queried. As mentioned above, this data structure has query time O(1/τ) and requires O(mn(H+1)log2(1α)) bits of space by storing a Huffman-encoded copy of it (note the log(1α) factor and also see Huffman coding).

One-dimensional arrays

Chan et al.[13] proposed a data structure that given a one-dimensional arrayA, a subrange R of A (specified at query time) and a threshold τ (specified at query time), is able to return the list of all τ-majorities in O(1/τ) time requiring O(nlogn) words of space. To answer such queries, Chan et al.[13] begin by noting that there exists a data structure capable of returning the top-k most frequent items in a range in O(k) time requiring O(n) words of space. For a one-dimensional array A[0,..,n1], let a one-sided top-k range query to be of form A[0..i] for 0in1. For a maximal range of ranges A[0..i] through A[0..j] in which the frequency of a distinct element e in A remains unchanged (and equal to f), a horizontal line segment is constructed. The x-interval of this line segment corresponds to [i,j] and it has a y-value equal to f. Since adding each element to A changes the frequency of exactly one distinct element, the aforementioned process creates O(n) line segments. Moreover, for a vertical line x=i all horizonal line segments intersecting it are sorted according to their frequencies. Note that, each horizontal line segment with x-interval [,r] corresponds to exactly one distinct element e in A, such that A[]=e. A top-k query can then be answered by shooting a vertical ray x=i and reporting the first k horizontal line segments that intersect it (remember from above that these line segments are already sorted according to their frequencies) in O(k) time.

Chan et al.[13] first construct a range tree in which each branching node stores one copy of the data structure described above for one-sided range top-k queries and each leaf represents an element from A. The top-k data structure at each node is constructed based on the values existing in the subtrees of that node and is meant to answer one-sided range top-k queries. Please note that for a one-dimensional array A, a range tree can be constructed by dividing A into two halves and recursing on both halves; therefore, each node of the resulting range tree represents a range. It can also be seen that this range tree requires O(nlogn) words of space, because there are O(logn) levels and each level has 2 nodes. Moreover, since at each level of a range tree all nodes have a total of n elements of A at their subtrees and since there are O(logn) levels, the space complexity of this range tree is O(nlogn).

Using this structure, a range τ-majority query A[i..j] on A[0..n1] with 0ijn is answered as follows. First, the lowest common ancestor (LCA) of leaf nodes i and j is found in constant time. Note that there exists a data structure requiring O(n) bits of space that is capable of answering the LCA queries in O(1) time.[14] Let z denote the LCA of i and j, using z and according to the decomposability of range τ-majority queries (as described above and in [11]), the two-sided range query A[i..j] can be converted into two one-sided range top-k queries (from z to i and j). These two one-sided range top-k queries return the top-(1/τ) most frequent elements in each of their respective ranges in O(1/τ) time. These frequent elements make up the set of candidates for τ-majorities in A[i..j] in which there are O(1/τ) candidates some of which might be false positives. Each candidate is then assessed in constant time using a linear-space data structure (as described in Lemma 3 in [15]) that is able to determine in O(1) time whether or not a given subrange of an array A contains at least q instances of a particular element e.

Tree paths

Gagie et al.[16] proposed a data structure which supports queries such that, given two nodes u and v in a tree, are able to report the list of elements that have a greater relative frequency than τ on the path from u to v. More formally, let T be a labelled tree in which each node has a label from an alphabet of size σ. Let label(u)[1,,σ] denote the label of node u in T. Let Puv denote the unique path from u to v in T in which middle nodes are listed in the order they are visited. Given T, and a fixed (specified during pre-processing) threshold 0<τ<1, a query Q(u,v) must return the set of all labels that appear more than τ|Puv| times in Puv.

To construct this data structure, first O(τn) nodes are marked. This can be done by marking any node that has distance at least 1/τ from the bottom of the three (height) and whose depth is divisible by 1/τ. After doing this, it can be observed that the distance between each node and its nearest marked ancestor is less than 21/τ. For a marked node x, log(depth(x)) different sequences (paths towards the root) Pi(x) are stored,

Pi(x)=label(x),par(x),par2(x),,par2i(x)

for 0ilog(depth(x)) where par(x) returns the label of the direct parent of node x. Put another way, for each marked node, the set of all paths with a power of two length (plus one for the node itself) towards the root is stored. Moreover, for each Pi(x), the set of all majority candidates Ci(x) are stored. More specifically, Ci(x) contains the set of all (τ/2)-majorities in Pi(x) or labels that appear more than (τ/2).(2i+1) times in Pi(x). It is easy to see that the set of candidates Ci(x) can have at most 2/τ distinct labels for each i. Gagie et al.[16] then note that the set of all τ-majorities in the path from any marked node x to one of its ancestors z is included in some Ci(x) (Lemma 2 in [16]) since the length of Pi(x) is equal to (2i+1) thus there exists a Pi(x) for 0ilog(depth(x)) whose length is between dxz and 2dxz where dxz is the distance between x and z. The existence of such Pi(x) implies that a τ-majority in the path from x to z must be a (τ/2)-majority in Pi(x), and thus must appear in Ci(x). It is easy to see that this data structure require O(nlogn) words of space, because as mentioned above in the construction phase O(τn) nodes are marked and for each marked node some candidate sets are stored. By definition, for each marked node O(logn) of such sets are stores, each of which contains O(1/τ) candidates. Therefore, this data structure requires O(logn×(1/τ)×τn)=O(nlogn) words of space. Please note that each node x also stores count(x) which is equal to the number of instances of label(x) on the path from x to the root of T, this does not increase the space complexity since it only adds a constant number of words per node.

Each query between two nodes u and v can be answered by using the decomposability property (as explained above) of range τ-majority queries and by breaking the query path between u and v into four subpaths. Let z be the lowest common ancestor of u and v, with x and y being the nearest marked ancestors of u and v respectively. The path from u to v is decomposed into the paths from u and v to x and y respectively (the size of these paths are smaller than 21/τ by definition, all of which are considered as candidates), and the paths from x and y to z (by finding the suitable Ci(x) as explained above and considering all of its labels as candidates). Please note that, boundary nodes have to be handled accordingly so that all of these subpaths are disjoint and from all of them a set of O(1/τ) candidates is derived. Each of these candidates is then verified using a combination of the labelanc(x,) query which returns the lowest ancestor of node x that has label and the count(x) fields of each node. On a w-bit RAM and an alphabet of size σ, the labelanc(x,) query can be answered in O(loglogwσ) time whilst having linear space requirements.[17] Therefore, verifying each of the O(1/τ) candidates in O(loglogwσ) time results in O((1/τ)loglogwσ) total query time for returning the set of all τ-majorities on the path from u to v.

All the problems described above have been studied for higher dimensions as well as their dynamic versions. On the other hand, range queries might be extended to other data structures like trees,[8] such as the level ancestor problem. A similar family of problems are orthogonal range queries, also known as counting queries.

See also

References

Template:Reflist

Template:CS-Trees