retagged by
2,044 views

2 Answers

3 votes
3 votes
I think answer should be range search..
All the rest are applications of Hashing..

1) Counting distinct values - can be easily done if we know the allowed range of numbers, say n and using the hashing function :-
x mod n
2) and 3) are common applications of hashing..

4) Range search cannot be done by using hashing alone.
1 votes
1 votes
Answer is 4) Range search

Hashtables cannot contribute to the problems like Given values a and b, find all the records whose key value is in the given range.

Related questions

0 votes
0 votes
1 answer
1
rahul sharma 5 asked Dec 28, 2016
814 views
Hsh tables can contribute to an efficient average case solution for all of the following problems described below except?a. Counting Distinct Valuesb. Dynamic Dictionaryc...