Computer Science, asked by kattakarthikreddy, 6 months ago

What is the hash function used in case of a collision in double hashing?​

Answers

Answered by parasharpraveen244
3

Answer:

The double hashing technique uses one hash value as an index into the table and then repeatedly steps forward an interval until the desired value is located, an empty location is reached, or the entire table has been searched; but this interval is set by a second, independent hash function.

Answered by Anonymous
1

Answer:

Double hashing is a computer programming technique used in conjunction with open-addressing in hash tables to resolve hash collisions, by using a secondary hash of the key as an offset when a collision occurs. Double hashing with open addressing is a classical data structure on a table {\displaystyle T}T

The double hashing technique uses one hash value as an index into the table and then repeatedly steps forward an interval until the desired value is located, an empty location is reached, or the entire table has been searched; but this interval is set by a second, independent hash function.

Similar questions