g++ -c src/elastic_hashing.cpp -o elastic_hashing.o -std=c++17
g++ -c src/funnel_hashing.cpp -o funnel_hashing.o -std=c++17
g++ -c test.cpp -o test.o -std=c++17
g++ -o test test.cpp src/elastic_hashing.cpp src/funnel_hashing.cpp -std=c++17
./test.exe
不知道為甚麼 elastic_hashing 的測試一直錯
thank xyz-whu-coder