Question: For an ideal compression function, the capacity of the bucket array for a hash table should be a prime number. Therefore, we consider the problem
For an ideal compression function, the capacity of the bucket array for a hash table should be a prime number. Therefore, we consider the problem of locating a prime number in a range [M,2M]. Implement a method for finding such a prime by using the sieve algorithm. In this algorithm, we allocate a 2M cell boolean array A, such that cell i is associated with the integer i. We then initialize the array cells to all be “true” and we “mark off” all the cells that are multiples of 2, 3, 5, 7, and so on. This process can stop after it reaches a number larger than √2M.
Step by Step Solution
3.41 Rating (164 Votes )
There are 3 Steps involved in it
The method is as f... View full answer
Get step-by-step solutions from verified subject matter experts
