Consider a linear probe hash table of length m = 12 with the hash function: h(key) = key mod m. Click the sequence for inserting keys 20,22,24,26,36,49,50,56,59 such that the resulting content of the hash table is:
36 | 49 | 50 | 26 | 24 | NULL | NULL | NULL | 56 | 20 | 22 | 59
Comments
Leave a comment