Question: Task 1: Closed Hashing Marks [30] An instructor needs a data structure to store the roll numbers of his students. The number of students in
![Task 1: Closed Hashing Marks [30] An instructor needs a data](https://dsd5zvtm8ll6.cloudfront.net/si.experts.images/questions/2024/09/66f3921c67b8c_68466f3921c48681.jpg)
Task 1: Closed Hashing Marks [30] An instructor needs a data structure to store the roll numbers of his students. The number of students in his section are 20 and the range of roll numbers is 201111 to 209999. Implement a hash table along a hash function that takes roll number of a student as a key to create hash value. You are required to create a class closed_hashing with following operations:- .insert(int roll) - to store the roll number delete (int roll) - to remove the roll number search (int roll) - to find if the roll number is stored hash_function(int roll) to generate a hash key. Note: The implementation must only have closed hashing. Use any hash function and handle collisions with linear probing
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
