Lab 5
Warning
To compile you should use a CMakeLists.txt. It takes sometimes to get use to it, but it makes the compilation much easier.
Hash Table - Introduction
In this part, you will implement a simple HashTable, that works with the separate chaining strategy.
Download the header file of the class
HashTableheaderDownload the implementation file of the class
HashTableimplementationImplement each method of the class in a file HashTable.cpp.
Download the test file of the class
main.Test your class. Make sure everything works.
Hash Table - Quadratic Probing
In this part, you will implement a HashTable, that works with the Quadratic Probing collision function.
Download the header file of the class
HashTableheaderDownload the implementation file of the class
HashTableimplementationImplement each method of the class in a file HashTable.cpp.
Download the test file of the class
main.Test your class. Make sure everything works.