自定义unordered_set类型

自定义unordered_set类型

1.1 方法一定义哈希函数和判等函数,小括号中1表示最小bucket值。

#include <iostream>
#include <unordered_set>
using namespace std;
struct Str
{
	int x;
};
size_t MyHash(const Str& val)
{
	return val.x;
}
bool MyEqual(const Str& val1, const Str& val2)
{
	return val1.x==val2.x;
}
int main()
{
	unordered_set<Str,decltype(&MyHash), decltype(&MyEqual)> s(1, MyHash, MyEqual);
	s.insert(Str{3});
	for(auto a=s.begin(); a!=s.end();a++)
	{
		cout<<(*a).x<<endl;
	}
}

1.2 输出结果

3

2.1 方法二运算符重载,使用缺省的方式构建

#include <iostream>
#include <unordered_set>
using namespace std;
struct Str
{
	int x;
	bool operator==(const Str& t)const
	{
		return (this->x ==t.x);
	}
};
class MyHash
{
public:
	size_t operator()(const Str&t) const
	{
		return t.x;
	}
};
int main()
{
	unordered_set<Str, MyHash> s;
	s.insert(Str{3});
	for(auto a=s.begin(); a!=s.end();a++)
	{
		cout<<(*a).x<<endl;
	}
}

2.2 输出结果

3
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值