InterviewSolution
Saved Bookmarks
| 1. |
Insert the characters of the string K R P C S N Y T J M into a hash table of size 10.Use the hash functionh(x) = ( ord(x) – ord("a") + 1 ) mod10If linear probing is used to resolve collisions, then the following insertion causes collision(A) Y(B) C(C) M(D) P |
| Answer» None | |