in DS edited by
10,188 views
34 votes
34 votes

Consider a hash table with $9$ slots. The hash function is $h(k)= k \mod 9$. The collisions are resolved by chaining. The following $9$ keys are inserted in the order: $5, 28, 19, 15, 20, 33, 12, 17, 10$. The maximum, minimum, and average chain lengths in the hash table, respectively, are

  1. $3, 0,$ and $1$
  2. $3, 3,$ and $3$
  3. $4, 0,$ and $1$
  4. $3, 0,$ and $2$
in DS edited by
10.2k views

1 comment

Actually In chaing we store address of chain in hash table . initially all the node will contain NULL.  when hash value is computed It will search where to link that node then address of this node is stored in corresponding node.As such node will  be created for every new insertion.So it shows all the property of Single linked list like insertion deletion updation etc..Its Structure is somewhat similar to adjacency list.For a chaining i max length is not fixed so it is prefered hasing technique.
0
0

3 Answers

48 votes
48 votes
Best answer

So, Maximum & minimum chain lengths are $3  \ \&  \ 0$ respectively.

Average chain length $= (0+3+1+1+0+1+2+0+1)/9 = 1$ .

So, Answer is A.

edited by

4 Comments

@Arjun sir, although the answer is correct, but I think that in Chaining, insertions in the list are performed in the beginning of the list to achieve constant time operation. If we insert into the end of the list, in worst case, insertion will take O(length of chain) as we will need to traverse the entire chain then. In the diagram above, the OP has inserted in the end of the chain.
13
13
yes, but still searching will be O(length of chain) rt? Hashing takes care of this using proper hash function and load factor.
4
4
Yes, but in exam suppose order of elements in a chain is asked, then we should insert into the beginning of the list and proceed right ?
4
4

REMEMBER here Average chain length = (0+3+1+1+0+1+2+0+1)/9 , this nine (9) is total number of slot in the hash table (NOT THE NUMBER OF KEY)

20
20
3 votes
3 votes
Following are values of hash function for all keys

 5 --> 5
28 --> 1
19 --> 1  [Chained with 28]
15 --> 6
20 --> 2
33 --> 6  [Chained with 15]
12 --> 3
17 --> 8
10 --> 1 [Chained with 28 and 19]

The maximum chain length is 3. The keys 28, 19 and 10 go to same slot 1, and form a chain of length 3. The minimum chain length 0, there are empty slots (0, 4 and 7). Average chain length is (0 + 3 + 1 + 1 + 0 + 1 + 2 + 0 + 1)/9 = 1

2 Comments

Good one

Thanks
0
0
0 votes
0 votes
Answer:

Related questions