Qp tries: smaller and faster than crit-bit tries(fanf.livejournal.com)
fanf.livejournal.com
Qp tries: smaller and faster than crit-bit tries
http://fanf.livejournal.com/137283.html
3 comments
Yes, but surprisingly hard to find a good citation! Best I can do is note where I found out about it, or at least what inspired this project...
I 100% agree with this part :)
I'm glad you noted it explicitly somewhere, as this trick should be better known.
Note that while sparse, it is not as memory efficient as, for example, linked list bitmaps.
This is because the mask is going to contain O(universe/wordsize) bits, and depending on the size of the universe, the mask may be larger than the actual data stored!
Note that while sparse, it is not as memory efficient as, for example, linked list bitmaps.
This is because the mask is going to contain O(universe/wordsize) bits, and depending on the size of the universe, the mask may be larger than the actual data stored!
more general, adaptive version: https://github.com/armon/libart
just skimmed the beginning, saw a mention of the use of popcount. That looks interesting. It is an article like this that I really enjoy on HN. Thanks for writing it.
"
FWIW: These kind of sparse array tricks have been around forever:
https://gcc.gnu.org/ml/gcc-patches/2007-03/msg01308.html
The original idea for that patch didn't come from philip bagwell's paper, but from some code from the late 80's i saw at IBM.
Thus, i suspect this kind of thing has been around forever