使用这个数据结构:(一个双向链表数组)
list<string> hashTable [HASH_TABLE_SIZE];
我想使用以下方法检查某个链接列表是否为空:
Hash HashTable;
if(Hash[hf(word)].empty() == true)
{do this}
这些是我得到的编译错误:
$ make -f makefile.txt
g++ -g -D HASH_TABLE_SIZE=10 -c hash.cpp
hash.cpp: In member function `void Hash::processFile(std::string)':
hash.cpp:19: error: expected primary-expression before '[' token
makefile.txt:6: recipe for target `hash.o' failed
make: *** [hash.o] Error 1