Write a program that stores a set of integers (indices) into an array using the following hash function:
H(key) = key mod (noitems +1)
Where H is a hash function and noitems indicates number of items that should be stored using the array. Collisions should be resolved using Linear Probing method. For each case, the number of collisions should be reported.
Program Requirements:
The program...