closed by
425 views
0 votes
0 votes
closed with the note: Duplicate question

Consider the following keys that are hashed into table in the order given using hash function
h(i) = (2i + 5) mod11
12, 44, 13, 88, 23, 94, 11, 39, 20, 16, 5
Assume hash table has location from 0 to 10. If hash table uses chaining to handle the collisions, what is
the probability of new elements ‘x’ fit inside hash table without any collision.

closed by

Related questions

0 votes
0 votes
3 answers
1
0 votes
0 votes
1 answer
2
3 votes
3 votes
5 answers
3
srestha asked May 22, 2019
1,861 views
Consider the following function height, to which pointer to the root node of a binary tree shown below is passedNote that max(a,b) defined by #define max(a,b) (a>b)?a:b.i...