在结构体中的 TR1 unordered_map 中定义哈希函数
根据此,可以在 TR1 unordered_map 中定义一个相等函数,如下所示:
#include <tr1/unordered_map>
using namespace std;
using namespace std::tr1;
struct foo{
...
bool operator==(const foo& b) const{
return ..;
}
};
unordered_map<foo,int> map;
是否可以以相同的方式定义哈希函数?
According to this, it is possible to define an equality function in a TR1 unordered_map like this:
#include <tr1/unordered_map>
using namespace std;
using namespace std::tr1;
struct foo{
...
bool operator==(const foo& b) const{
return ..;
}
};
unordered_map<foo,int> map;
Is it possible to define the hash function the same way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想要更改默认哈希(或者,更常见的是,为当前不支持的类型提供哈希),您可以提供
std::tr1::hash
的专门化您的键类型:请注意,将现有模板专门用于用户定义类型是允许您在
命名空间中编写代码的罕见情况之一标准。
If you want to change the default hashing (or, more often, provide hashing for a type that isn't currently supported), you provide a specialization of
std::tr1::hash<T>
for your key-type:Note that specializing an existing template for a user-defined type is one of the rare cases where you specifically are allowed to write code in
namespace std
.unordered_map 类的签名是这样的:
您的示例之所以有效,是因为默认 Pred std::equal_to<> 默认情况下使用运算符 == 检查相等性。编译器找到您的 foo::operator== 成员函数并使用它。
std::hash 没有任何专门化来调用类上的成员函数,因此您不能仅使用自定义哈希向 foo 添加成员。您将需要专门化 std::hash 。如果您希望调用 foo 上的成员函数,请继续。你最终会得到这样的结果:
The signature of the unordered_map class is this:
Your example works because the default Pred, std::equal_to<>, by default checks for equality using operator==. The compiler finds your foo::operator== member function and uses that.
std::hash doesn't have any specialisation which will call a member function on your class, so you can't just add a member to foo with a custom hash. You will need to specialise std::hash instead. If you want that to call a member function on foo, go ahead. You'll end up with something like this: