我正在使用 unordered_set 来实现哈希表。我不知道如何使用查找功能。运行此代码时,我不断收到段错误。我知道它是因为 find() 没有找到一个元素,但它应该。我的问题是如何正确使用 find 与我提供的自定义哈希函数?
unordered_set<Play*, Play::Hash> hashedData
unordered_set<Play*>::iterator got;
for (int i = 0; i < 10; ++i) {
got = hashedData.find(data[i]);
cout << (*got)->getSummary() << endl << endl;
}
数据只是一个
vector<Play*>
我的哈希函数看起来像这样
struct Hash {
size_t operator()(Play* const &x) const {
size_t t = 0;
static int hash = 0;
string u = x->getOffense();
string v = x->getDefence();
string w = x->getPlayDesc();
t = u.length() + v.length() + w.length();
t += hash;
++hash;
return t;
}
};