Word RAM: Difference between revisions
AmirOnWiki (talk | contribs) |
AmirOnWiki (talk | contribs) |
||
Line 28: | Line 28: | ||
The [[dynamic predecessor problem]] is also commonly analyzed in the word RAM model, and was the original motivation for the model. [[Dan Willard]] used [[y-fast trie]]s to solve this in <math>O(\log w)</math> time, or, more precisely, <math>O(\log\log U)</math> where {{mvar|U}} is a bound on the values stored.<ref>{{cite journal |last1=Willard |first1=Dan E. |title=Log-logarithmic worst-case range queries are possible in space Θ (N) |journal=Information Processing Letters |date=1983 |volume=17 |issue=2 |pages=81-84}}</ref> [[Michael Fredman]] and Willard also solved the problem using [[fusion tree]]s in <math>O(\log_w n)</math> time.<ref name="Fredman90"/> Using [[exponential tree|exponential search trees]], a query can be performed in <math>O(\sqrt{\log n / \log\log n})</math>.<ref>{{cite journal |last1=Andersson |first1=Arne |last2=Thorup |first2=Mikkel |title=ynamic ordered sets with exponential search trees |journal=Journal of the ACM |date=2007 |volume=54 |issue=3 |pages=1-40 |doi=10.1145/1236457.1236460}}</ref> |
The [[dynamic predecessor problem]] is also commonly analyzed in the word RAM model, and was the original motivation for the model. [[Dan Willard]] used [[y-fast trie]]s to solve this in <math>O(\log w)</math> time, or, more precisely, <math>O(\log\log U)</math> where {{mvar|U}} is a bound on the values stored.<ref>{{cite journal |last1=Willard |first1=Dan E. |title=Log-logarithmic worst-case range queries are possible in space Θ (N) |journal=Information Processing Letters |date=1983 |volume=17 |issue=2 |pages=81-84}}</ref> [[Michael Fredman]] and Willard also solved the problem using [[fusion tree]]s in <math>O(\log_w n)</math> time.<ref name="Fredman90"/> Using [[exponential tree|exponential search trees]], a query can be performed in <math>O(\sqrt{\log n / \log\log n})</math>.<ref>{{cite journal |last1=Andersson |first1=Arne |last2=Thorup |first2=Mikkel |title=ynamic ordered sets with exponential search trees |journal=Journal of the ACM |date=2007 |volume=54 |issue=3 |pages=1-40 |doi=10.1145/1236457.1236460}}</ref> |
||
Additional results in the word RAM model are listed in the article on [[range searching]]. |
|||
Lower bounds applicable to word RAM algorithms are often proved in the [[cell-probe model]]. |
Lower bounds applicable to word RAM algorithms are often proved in the [[cell-probe model]]. |
Revision as of 11:34, 10 September 2023
In theoretical computer science, the word RAM (word random-access machine) model is a model of computation in which a random-access machine does arithmetic and bitwise operations on a word of w bits. Michael Fredman and Dan Willard created it in 1990 to simulate programming languages like C.[1]
Model
The word RAM model is an abstract machine similar to a random-access machine, but with finite memory and word-length. It works with words of size up to w bits, meaning it can store integers up to . Because the model assumes that the word size matches the problem size, that is, for a problem of size n, , the word RAM model is a transdichotomous model[2]. The model allows both arithmetic operations and bitwise operations including logical shifts to be done in constant time (the precise instruction set assumed by an algorithm or proof using the model may vary).
Algorithms and data structures
In the word RAM model, integer sorting can be done fairly efficiently. Yijie Han and Mikkel Thorup created a randomized algorithm to sort integers in expected time of (in Big O notation) ,[3] while Han also created a deterministic variant with running time .[4]
The dynamic predecessor problem is also commonly analyzed in the word RAM model, and was the original motivation for the model. Dan Willard used y-fast tries to solve this in time, or, more precisely, where U is a bound on the values stored.[5] Michael Fredman and Willard also solved the problem using fusion trees in time.[1] Using exponential search trees, a query can be performed in .[6]
Additional results in the word RAM model are listed in the article on range searching.
Lower bounds applicable to word RAM algorithms are often proved in the cell-probe model.
See also
References
- ^ a b Fredman, Michael; Willard, Dan (1990). "Blasting through the information theoretic barrier with fusion trees". Symposium on Theory of Computing: 1–7.
- ^ In fact one usually assumes n to be smaller than , so that the data-structure considered can be indexed with w-bit addresses.
- ^ Han, Yijie; Thorup, M. (2002), "Integer sorting in O(n√log log n) expected time and linear space", Proceedings of the 43rd Annual Symposium on Foundations of Computer Science (FOCS 2002), IEEE Computer Society, pp. 135–144, CiteSeerX 10.1.1.671.5583, doi:10.1109/SFCS.2002.1181890, ISBN 978-0-7695-1822-0
- ^ Han, Yijie (2004), "Deterministic sorting in O(n log log n) time and linear space", Journal of Algorithms, 50 (1): 96–105, doi:10.1016/j.jalgor.2003.09.001, MR 2028585
- ^ Willard, Dan E. (1983). "Log-logarithmic worst-case range queries are possible in space Θ (N)". Information Processing Letters. 17 (2): 81–84.
- ^ Andersson, Arne; Thorup, Mikkel (2007). "ynamic ordered sets with exponential search trees". Journal of the ACM. 54 (3): 1–40. doi:10.1145/1236457.1236460.