7. OOP: Hash Table, Map, Priority Queue

Hash Table, Map, Priority Queue

0. Overview

Besides the basic data structures mentioned in STL, there are some other interesting data structure worth being mentioned.

1. Hash Table vs. Hash Map

Hash table in C++ is “unordered_map<T, T>”, what makes it different from the the Hash map, which is “map<T, T>”, is the sort of the key. In Hash map, the key is sorted, while hash table is not.

So how do hash table arrange its order? It involves the hash function, which is provided by C++ system. Of course, we could define the hash function, but what’s more important is that how to write the hasher and predicate.

//unordered_map and unordered_multimap are used to implement Hash Table
//template <class T> class hash { } is provided by C++ system, where T can be any primitive data type, such as int, double, string, etc. 

#include <iostream>
#include <map>
#include <unordered_map>
#include <string>
#include <algorithm>//for_each

using namespace std;
template <class T> 
class ThreeD {
public:
	T ht;
	T wid;
	T dep;
	ThreeD() :ht(0), wid(0), dep(0) {}
	ThreeD(T i, T j, T k) : ht(i), wid(j), dep(k) {}
	T getVol() const { return ht * wid * dep; }
	T getSurface() const { return 2 * (ht * wid + wid * dep + dep * ht); }


};

template <class T> 
class my_compare {
public:
	bool operator()(const ThreeD<T>& t1, const ThreeD<T>& t2) const { 
		return t1.getSurface() < t2.getSurface(); }
};

// predicate
template <class T> 
class my_equal_to {
public:
	bool operator()(const ThreeD<T>& t1, const ThreeD<T>& t2) const { 
		return t1.getSurface() == t2.getSurface(); }
};


// hasheer
template <class T> 
class my_hash {
public:
	// it must be size_t, because it reflect to the size of the table
	size_t operator() (const ThreeD<T>& t1) const {
		hash<int> h;
		return h(t1.getSurface() * t1.getVol());
	}
};

//predicate
class my_equal_to1 {
public:
	bool operator()(const ThreeD<int>& t1, const ThreeD<int>& t2) const { 
		return t1.getSurface() == t2.getSurface(); }
};
//hasher
class my_hash1 {
public:
	size_t operator() (const ThreeD<int>& t1) const {
		hash<int> h;
		return h(t1.getSurface() * t1.getVol());
	}
};

template <class T> 
ostream& operator<<(ostream& str, const ThreeD<T>& t) {
	str << "(" << t.ht << ", " << t.wid << ", " << t.dep << ")";
	return str;
}

int main() {

	map<int, int> M1{ {5, 20}, {4, 100}, {3, 40}, {6, 100}, {5, 1000} };
	for (auto i : M1) { cout << i.first << " " << i.second << "   "; }
	cout << endl;
	unordered_map<int, int> M2{ {5, 20}, {4, 100}, {3, 40}, {6, 100}, {5, 1000} };
	M2.insert({ 5,111 });
	M2[5] = 111;
	for (auto i : M2) { cout << i.first << " " << i.second << "   "; }
	cout << endl;
	//hash funciton used is hash<int>
	//eqaulity function used is  equal_to<int>


	ThreeD<int> t1(6, 4, 3), t2(9, 8, 4), t3(1, 2, 3);
	map<ThreeD<int>, int, my_compare<int>> M3{ {t1, 11},{t2, 12},{t3, 13},{t1, 111} };
	for (auto i : M3) { cout << i.first << " " << i.second << "   "; }
	cout << endl;

	unordered_map<ThreeD<int>, int, my_hash<int>, my_equal_to<int>> M4{ {t1, 11},{t2, 12},{t3, 13},{t1, 111} };
	for (auto i : M4) { cout << i.first << " " << i.second << "   "; }
	cout << endl;

	unordered_multimap<ThreeD<int>, int, my_hash<int>, my_equal_to<int>> M5{ {t1, 11},{t2, 12},{t3, 13},{t1, 111} };
	for (auto i : M5) { cout << i.first << " " << i.second << "   "; }
	cout << endl;

	auto ret = M5.equal_range(t1);
	for_each(ret.first, ret.second, [](auto i) {cout << i.first<<" "<<i.second << " "; });

	unordered_map<ThreeD<int>, int, my_hash1, my_equal_to1> M6{ {t1, 11},{t2, 12},{t3, 13},{t1, 111} };
	for (auto i : M6) { cout << i.first << " " << i.second << "   "; }
	cout << endl;
	return 0;
}

2. Priority Queue

Based on the queue, priority queue is more like a max/min heap. The default comparison is less< int>, of course we could define it greater< int> according to our needs.

//priority queue and hash table
#include <iostream>
#include <queue> //allow you to use prioiry_queue
#include <map>
#include <set>
#include <unordered_map> //Hahs Table
#include <algorithm> //for_each
#include <string>
#include <iomanip>
#include <tuple>
using namespace std;
int k;//initialized to 0 for global int

template <class T> 
class my_compare {
public:
	bool operator()(T a, T b) { return a % 3 < b % 3; }
};

int main() {

	priority_queue<int> q1; //max heap; default comparator is less<int>
	for (auto i : { 1,2,3,4,5 }) { q1.push(i); }
	while (!q1.empty()) {
		cout << q1.top() << " ";
		q1.pop();
	}
	cout << endl;

	// must have vector<int>, it likes a temporialy container
	priority_queue<int, vector<int>, greater<int >> q2; //min heap
	for (auto i : { 1,2,3,4,5 }) { q2.push(i); }
	while (!q2.empty()) {
		cout << q2.top() << " ";
		q2.pop();
	}
	cout << endl;
	priority_queue<int, vector<int>, my_compare<int>> q3; //min heap
	for (auto i : { 11,12,13,14,15 }) { q3.push(i); }
	while (!q3.empty()) {
		cout << q3.top() << " ";
		q3.pop();
	}
	cout << endl;
	multiset<int> s{ 6,2,8,4,7,2,9,2,1, 3,5,2,7,2 };
	for (auto i : s) { cout << i << " "; }
	cout << endl;
	auto it = s.find(2);
	it--;
	cout << *it << endl;
	auto ret = s.equal_range(2);
	//it return a pair of iterators [it1, it2)
	//for all elements that match
	cout << endl;
	for_each(ret.first, ret.second, [](auto i) {cout << i << " "; });



	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
1. 智慧社区背景与挑战 随着城市化的快速发展,社区面临健康、安全、邻里关系和服务质量等多方面的挑战。华为技术有限公司提出智慧社区解决方案,旨在通过先进的数字化技术应对这些问题,提升城市社区的生活质量。 2. 技术推动智慧社区发展 技术进步,特别是数字化、无线化、移动化和物联化,为城市社区的智慧化提供了可能。这些技术的应用不仅提高了社区的运行效率,也增强了居民的便利性和安全性。 3. 智慧社区的核心价值 智慧社区承载了智慧城市的核心价值,通过全面信息化处理,实现对城市各个方面的数字网络化管理、服务与决策功能,从而提升社会服务效率,整合社会服务资源。 4. 多层次、全方位的智慧社区服务 智慧社区通过构建和谐、温情、平安和健康四大社区模块,满足社区居民的多层次需求。这些服务模块包括社区医疗、安全监控、情感沟通和健康监测等。 5. 智慧社区技术框架 智慧社区技术框架强调统一平台的建设,设立数据中心,构建基础网络,并通过分层建设,实现平台能力及应用的可持续成长和扩展。 6. 感知统一平台与服务方案 感知统一平台是智慧社区的关键组成部分,通过统一的RFID身份识别和信息管理,实现社区服务的智能化和便捷化。同时,提供社区内外监控、紧急救助服务和便民服务等。 7. 健康社区的构建 健康社区模块专注于为居民提供健康管理服务,通过整合医疗资源和居民接入,实现远程医疗、慢性病管理和紧急救助等功能,推动医疗模式从治疗向预防转变。 8. 平安社区的安全保障 平安社区通过闭路电视监控、防盗报警和紧急求助等技术,保障社区居民的人身和财产安全,实现社区环境的实时监控和智能分析。 9. 温情社区的情感沟通 温情社区着重于建立社区居民间的情感联系,通过组织社区活动、一键呼叫服务和互帮互助平台,增强邻里间的交流和互助。 10. 和谐社区的资源整合 和谐社区作为社会资源的整合协调者,通过统一接入和身份识别,实现社区信息和服务的便捷获取,提升居民生活质量,促进社区和谐。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值