What do you mean by double hashing?
4 years ago
Data Structure and Algorithm
Double hashing is an open addressing collision resolution strategy in which F(i)=i.hash2(X). This formula says that we apply a second hash function to X and probe at a distance hash2(X), 2hash2(X),….,and so on. A function such as hash2(X)=R-(XmodR), with R a prime smaller than
Sanisha Maharjan
Jan 23, 2022