retagged by
7,652 views
26 votes
26 votes

Consider a $\textit{dynamic}$ hashing approach for $4$-bit integer keys:

  1. There is a main hash table of size $4$.
  2. The $2$ least significant bits of a key is used to index into the main hash table.
  3. Initially, the main hash table entries are empty.
  4. Thereafter, when more keys are hashed into it, to resolve collisions, the set of all keys corresponding to a main hash table entry is organized as a binary tree that grows on demand.
  5. First, the $3^{\text{rd}}$ least significant bit is used to divide the keys into left and right subtrees.
  6. To resolve more collisions, each node of the binary tree is further sub-divided into left and right subtrees based on the $4^{\text{th}}$ least significant bit.
  7. A split is done only if it is needed, i.e., only when there is a collision.

Consider the following state of the hash table.

Which of the following sequences of key insertions can cause the above state of the hash table (assume the keys are in decimal notation)?

  1. $5,9,4,13,10,7$
  2. $9,5,10,6,7,1$
  3. $10,9,6,7,5,13$
  4. $9,5,13,6,10,14$
retagged by

1 Answer

Best answer
31 votes
31 votes
  • $1 – 0001$
  • $4 – 0100$
  • $5 – 0101$
  • $6 – 0110$
  • $7 – 0111$
  • $9 – 1001$
  • $10 – 1010$
  • $13 – 1101$
  • $14 – 1110$
  1. $5, 9, 4, 13, 10, 7$

  1. $9,5,10,6,7,1$

  1. $10,9,6,7,5,13$

  1. $9,5,13,6,10,14$

So only one option correct C.

Ans. (C)

edited by
Answer:

Related questions

21 votes
21 votes
6 answers
3