Hacker News new | ask | show | jobs
by mbrubeck 2649 days ago
This varies not with the size of the whole hash table, but with the distance from any given index to the first empty bucket. By keeping the load factor constant, you can grow the hash table as much as you want without degrading the expected performance.
1 comments

Good point, thanks!