Iurii Tatishchev b43f08aacc
9.13 Lab: Hashing - Linear Probe (insert, search, delete)
Reuse code from the previous lab and write new code as described below:

- search hash: Modify this function to return -1 if the target key is not found or the number of collisions for that key if found.

`int search(Student &target, string key);`

- remove hash: Create a new function to delete an item from the hash table.
- insert manager: inserts user provided data into the hash table and rejects duplicates.
2024-05-11 16:16:27 -07:00
2024-04-28 11:54:46 -07:00
2024-04-28 11:54:46 -07:00
Description
No description provided
165 KiB
Languages
C++ 99%
CMake 1%