Questions tagged [hashtable]
22 questions
2
votes
2 answers
Load factor and prime number for hashing in HashTable
I am trying to design a HashTable from scratch. I am starting with an initial bucket size of 11 and trying to maintain a load factor 0.75.
Java documentation mentions that whenever the number of items reaches the load factor the HashTable increases…

Rahul Wadhwani
- 133
0
votes
0 answers
CRC32C as hash for hashmap
So I've been looking around to find a suitable hash function for a hashmap. Currently the best one I've found was from xxhash and maybe murmur after that, but they excluded CRC32C which can be optimized greatly by using 3 64 bit parallel crc32c…

Niels
- 9
0
votes
1 answer
What is the opposite of the 'load factor' (in reference to hash tables)
When the load of the hash table grows too large in proportion to the hash table size, you increase the size of the hash table to improve performance. When the load is too large is dependant on a predetermined value, the load factor.
How do you refer…

dav
- 159