Predecessor problem

In computer science, the predecessor problem involves maintaining a set of items to, given an element, efficiently query which element precedes or succeeds that element in an order. Data structures used to solve the problem include balanced binary search trees, van Emde Boas trees, and fusion trees. In the static predecessor problem, the set of elements does not change, but in the dynamic predecessor problem, insertions into and deletions from the set are allowed.[1]

The predecessor problem is a simple case of the nearest neighbor problem, and data structures that solve it have applications in problems like integer sorting.

Definition

The problem consists of maintaining a set S, which contains a subset of U integers. Each of these integers can be stored with a word size of w, implying that . Data structures that solve the problem support these operations:[2]

  • predecessor(x), which returns the largest element in S less than or equal to x
  • successor(x), which returns the smallest element in S greater than or equal to x

In addition, data structures which solve the dynamic version of the problem also support these operations:

  • insert(x), which adds x to the set S
  • delete(x), which removes x from the set S

The problem is typically analyzed in a transdichotomous model of computation such as word RAM.

Data structures

An x-fast trie containing the integers 1 (0012), 4 (1002) and 5 (1012), which can be used to efficiently solve the predecessor problem.

One simple solution to this problem is to use a balanced binary search tree, which achieves (in Big O notation) a running time of for predecessor queries. The Van Emde Boas tree achieves a query time of , but requires space.[1] Dan Willard proposed an improvement on this space usage with the x-fast trie, which requires space and the same query time, and the more complicated y-fast trie, which only requires space.[3] Fusion trees, introduced by Michael Fredman and Willard, achieve query time and for predecessor queries for the static problem.[4] The dynamic problem has been solved using exponential trees with query time,[5] and with expected time using hashing.[6]

Mathematical properties

There have been a number of attempts to prove lower bounds on the predecessor problem, or find what the running time of asymptotically optimal solutions would be. For example, Michael Beame and Faith Ellen proved that for all values of w, there exists a value of n with query time (in Big Theta notation) , and similarly, for all values of n, there exists a value of n such that the query time is .[1] Other proofs of lower bounds include the notion of communication complexity.

See also

References

  1. Beame, Paul; Fich, Faith (August 2002). "Optimal Bounds for the Predecessor Problem and Related Problems" (PDF). Journal of Computer and System Sciences. 65 (1): 38–72. doi:10.1006/jcss.2002.1822.
  2. Rahman, Naila; Cole, Richard; Raman, Rajeev (17 August 2001). Optimized Predecessor Data Structures for Internal Memory (PDF). International Workshop on Algorithm Engineering. pp. 67–78.
  3. Willard, Dan (24 August 1983). "Log-logarithmic worst-case range queries are possible in space Θ(n)". Information Processing Letters. 17 (2): 81–84. doi:10.1016/0020-0190(83)90075-3.
  4. Fredman, Michael; Willard, Dan (1990). "Blasting through the information theoretic barrier with fusion trees". Symposium on Theory of Computing: 1–7.
  5. Andersson, Arne; Thorup, Mikkel (2007), "Dynamic ordered sets with exponential search trees", Journal of the ACM, 54 (3): A13, arXiv:cs/0210006, doi:10.1145/1236457.1236460, MR 2314255.
  6. Raman, Rajeev (1996), "Priority queues: small, monotone and trans-dichotomous", Fourth Annual European Symposium on Algorithms (ESA '96), Barcelona, Spain, September 25–27, 1996, Lecture Notes in Computer Science, 1136, Berlin: Springer-Verlag, pp. 121–137, doi:10.1007/3-540-61680-2_51, ISBN 978-3-540-61680-1, MR 1469229.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.