Hash Map

Video demonstration of the program
Language: C++
Libraries: hashmap class file, hashmap class implentation file, fstream, iostream
This program utilizes a custom template class hashmap function that combines open addressing and separate chaining.
Program's main function:
It utilizes a file called NSHE.txt that holds the student names, student IDs, attending college, credits and GPA. The read in data then gets passed through struct named studentRecord.
The struct's information is then added into the first hashmap, which now will be used for student searching.
Another hashmap is created in order to track the number of searches on a student.
The main asks a user to input a student name and their ID. If the inputted information correct, the outputs the last name, first name, credits, GPA, and college.
If there are too many failed attemps on searching for a student an error message will be outputted. Also, if the correct student information is put in but the student was searched too much, another error message would appear.


example of redirection
Picture example of individual inputs