Double Hashing (Module 7) Flashcards
1
Q
What is a secondary hash function used to compute the step size for probing and make each sequence different for each key?
A
double hashing
2
Q
what is double hashing’s primary hash function?
A
hash1(k)
3
Q
What is double hashing’s secondary hash function?
A
hash2(k)
4
Q
What is double hashing’s formula?
A
(hash1(k) + i * hash2(k))mod m