Question:

Consider performing uniform hashing on an open address hash table with load factor \(α = \frac{n}{m}< 1\), where n elements are stored in the table with m slots. The n m expected number of probes in an unsuccessful search is at most \(\frac{1}{1-\alpha}\)
Inserting an element in this hash table requires at most ______ probes, on average.

Updated On: Jul 9, 2024
  • \(\text{ln}(\frac{1}{1-\alpha})\)
  • \(\frac{1}{1-\alpha}\)
  • \(1+\frac{\alpha}{2}\)
  • \(\frac{1}{1+\alpha}\)
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is B

Solution and Explanation

The correct option is (B) : \(\frac{1}{1-\alpha}\).
Was this answer helpful?
0
0