InterviewSolution
Saved Bookmarks
| 1. |
Consider double hashing of the formh(k,i)=(h 1 (k)+ih 2 (k)) mod mWhere h 1 (k)=k mod mh 2 (k)=1+(k mod n)Where n=m-1and m=701for k=123456, what is the difference between first and second probes in terms of slots?(A) 255(B) 256(C) 257(D) 258 |
| Answer» | |