插入适用于 set 但不适用于 unordered_set
Insert works with set but not with unordered_set
在下面的一段代码中:
#include<unordered_set>
#include<iostream>
#include<utility>
#include<string>
#include<set>
using namespace std;
int main()
{
set<pair<string, string> > g;
pair<string, string> tmp;
tmp.first="hello";
tmp.second="world";
g.insert(tmp);
}
如果我将 set<pair<string, string> > g;
更改为 unordered_set<pair<string, string> > g;
,我会在插入对时遇到错误,例如:
test1.cpp:15:14: note: candidate expects 2 arguments, 1 provided
g.insert(tmp);
^
是否与 "hash function can't be defined for a pair but only for basic data types" 类似?如果我错了请纠正我,否则请详细说明。谢谢!
没有计算一对散列的标准方法。您应该为您的对提供哈希函数。例如:-
struct hash_pair {
inline std::size_t operator()(const std::pair<std::string,std::string> & p) const {
return // howsoever you want to implement.
}
};
然后将您的 std::unordered_set 声明为:-
std::unordered_set< std::pair<std::string, std::string>, hash_pair> mySet;
在下面的一段代码中:
#include<unordered_set>
#include<iostream>
#include<utility>
#include<string>
#include<set>
using namespace std;
int main()
{
set<pair<string, string> > g;
pair<string, string> tmp;
tmp.first="hello";
tmp.second="world";
g.insert(tmp);
}
如果我将 set<pair<string, string> > g;
更改为 unordered_set<pair<string, string> > g;
,我会在插入对时遇到错误,例如:
test1.cpp:15:14: note: candidate expects 2 arguments, 1 provided
g.insert(tmp);
^
是否与 "hash function can't be defined for a pair but only for basic data types" 类似?如果我错了请纠正我,否则请详细说明。谢谢!
没有计算一对散列的标准方法。您应该为您的对提供哈希函数。例如:-
struct hash_pair {
inline std::size_t operator()(const std::pair<std::string,std::string> & p) const {
return // howsoever you want to implement.
}
};
然后将您的 std::unordered_set 声明为:-
std::unordered_set< std::pair<std::string, std::string>, hash_pair> mySet;