retagged by
384 views
0 votes
0 votes
Consider an initially empty hash table of length $10$. Following set of keys are inserted using open addressing with hash function $h\left ( k \right )=k\mod 10$ and linear probing.

$2$, $13$, $24$, $12$, $62$, $73$, $82$, $91$

The number of probes done while searching for element $82$ is __________.
retagged by

1 Answer

Best answer
4 votes
4 votes

hope it helps!!!

selected by
Answer:

Related questions

2 votes
2 votes
1 answer
1
Bikram asked May 14, 2017
692 views
The worst case running time to search for an element in binary search tree with $2^{\log_2 n}$ elements is represented as $\Theta\left(n^{x \log_2 y}\right)$ .The value o...