Hash tables with O(1) worst-case lookup and space efficiency [pdf]
1–10 of 45 posts
Re: Hash tables with O(1) worst-case lookup and space efficiency [pdf]
#2Re: Hash tables with O(1) worst-case lookup and space efficiency [pdf]
#3Re: Hash tables with O(1) worst-case lookup and space efficiency [pdf]
#4"WHY ELSE IS THIS COOL?" seems a very casual heading for an academic article.
Re: Hash tables with O(1) worst-case lookup and space efficiency [pdf]
#5Re: Hash tables with O(1) worst-case lookup and space efficiency [pdf]
#6Cuckoo hashing is not only optimal in theory, it is also very fast in practice. The only downside, though, is that the insert time has linear-time worst case. Thus it may be not the best solution if latency is an issue.
Almost all the containers we use on a regular basis provide only amortized constant time inserts.
Re: Hash tables with O(1) worst-case lookup and space efficiency [pdf]
#7Cuckoo hashing is not only optimal in theory, it is also very fast in practice. The only downside, though, is that the insert time has linear-time worst case. Thus it may be not the best solution if latency is an issue.
"Linear-time worst case" is different from "amortized constant time", which is what cuckoo hashing provides. Almost all the containers we use on a regular basis provide only amortized constant time inserts.
Re: Hash tables with O(1) worst-case lookup and space efficiency [pdf]
#8Re: Hash tables with O(1) worst-case lookup and space efficiency [pdf]
#9Re: Hash tables with O(1) worst-case lookup and space efficiency [pdf]
#10"WHY ELSE IS THIS COOL?" seems a very casual heading for an academic article.