Recent questions tagged hashing

1 votes
0 answers
121
Consider a hash table with 9 slots that use collision-resolution with chaining and the table is initially empty. What is the probability that after 4 insertions, at least...
0 votes
0 answers
125
is hashing there in gate 2019 syllabus?
1 votes
2 answers
126
For a given hash table $T$ with $10$ slots that stores $1000$ elements, the load factor $\alpha$ for $T$ is$100$$0.01$$200$$1.05$
0 votes
0 answers
128
Answer : 4.604
0 votes
0 answers
129
Anyone please give a solution to solve such question as it is difficult in one go.
0 votes
0 answers
130
0 votes
0 answers
131
https://gateoverflow.in/?qa=blob&qa_blobid=8164680937983732221I don't understand the solution at all. I thought 91,33,44,and 77 can come in any possible ways but that has...
0 votes
1 answer
132
0 votes
2 answers
133
can any one explain double hashing example
1 votes
1 answer
135
0 votes
0 answers
136
3 votes
2 answers
140
0 votes
0 answers
141
Which of following is true ?A. A secure hash function can never produce any collisions.B. Cryptographic function is deterministicC. Host using DHCP on wired network can b...
1 votes
0 answers
144
Suppose we used a hash fu action H(n) to hash n distinct elements (key) into an array T of length m. What is expected number of collision, if simple uniform hashing is us...
0 votes
1 answer
145
Which of the following is the least suitable hash function H(x) where X is some non negative integer ?1. h(k) =k%n2.h(k) =k*k %n3.h(k)=(gcd(k+1,2k+2) +k ) %nLinear probin...
1 votes
0 answers
146
What is the difference between hashing and addressing? Because the definition of open addressing and closed hashing seems to be the same.
0 votes
2 answers
147
A hash function h defined h(key)=key mod 7, with linear probing, is used to insert the keys 44, 45, 79, 55, 91, 18, 63 into a table indexed from 0 to 6. What will be the ...
2 votes
1 answer
150
WHICH OF THE FOLLOWING IS THE BEST CHOICE AS $m$ IN THE HASH FUNCTION $h(k)=k \mod m$??$61$$701$$81$answer is given as $701$ but how??