cis22c/06-hash-tables/CMakeLists.txt
Iurii Tatishchev 30ad8892de
9.14 Lab: Hash ADT
Now that you have a working implementation of the HashNode and HashTable classes, you can convert them to templates, and update main.cpp to match with the new template classes.

In order for everything to work you will also have to:

- overload the == operator for the Student class
- declare the hash function a friend function of the Student class
- send the hash function as an argument to insert, remove, and search functions.
2024-05-11 16:44:34 -07:00

8 lines
150 B
CMake

cmake_minimum_required(VERSION 3.28)
project(06_hash_tables)
set(CMAKE_CXX_STANDARD 20)
add_executable(06_hash_tables main.cpp
Student.cpp)