1,560 views
0 votes
0 votes

given keys:

224562,137456,214562

140145,214576,162145

144467,199645,234534

Using the digit-extraction method (first, third and fifth digits) and quadratic probing, stores the keys shown above in an array with 19 elements. What is the indexes of bin into which all the  records are inserted?

hint : digit extraction(1,3,5) for 224562->246 mod 19 = 18 and soon.

1 Answer

0 votes
0 votes

Indexes of bin in order of given keys : -

Related questions

1 votes
1 votes
1 answer
1
Kaluti asked Nov 9, 2017
542 views
In a hash table of size 6, currently the locations 0, 2, 4 and 5 are occupied. The probability of a new record going into location 1, with a hash function resolving colli...
0 votes
0 votes
0 answers
2
rsansiya111 asked Mar 12, 2022
373 views
Canadian postal codes have the format LDL DLD, where L is always a letter (between A-Z), D is always a digit (0-9), and is always a single space. For example, the postal ...
0 votes
0 votes
1 answer
4
Ram Swaroop asked Jan 27, 2019
1,305 views
Consider the hashing table with 'm' slots and 'n' keys. If the expected number of probes in unsuccessful search is 3. The expected number of probes in a successful search...