forked from Light-City/CPlusPlusThings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hash.cpp
78 lines (63 loc) · 1.83 KB
/
hash.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//
// Created by light on 19-11-4.
//
#include <iostream>
#include <unordered_set>
#include <complex>
using namespace std;
class Customer {
};
// 形式一 通过一个类,重载了操作符()的方式,形成了一个仿函数(函数对象)
class CustomerHash {
public:
size_t operator()(const Customer &c) const {
// return ...;
}
};
// 形式二 这个方法实际是通过指定了一个函数指针的方式来通知容器,对于这个自定义类到底应该使用哪个hash function
size_t customer_hash_func(const Customer &t) {
// return ...;
}
// 形式三 以struct hash 偏特化形式实现hash function
namespace std { // 必须放在std里面
template<>
struct hash<Customer> : public __hash_base<size_t, Customer> { // 继承不继承都可以!
size_t
operator()(const Customer&s) const noexcept {
// return ...;
}
};
}
// 万能的HashFunction 使用variadic templates
// (4)
template<typename T>
inline void hash_combine(size_t& seed, const T& val){
seed = std::hash<T>()(val) + 0x9e3779b9
+ (seed << 6) + (seed >> 2);
}
// (3)
template<typename T>
inline void hash_val(size_t& seed, const T& val){
hash_combine(seed, val);
}
// (2)
template<typename T, typename... Types>
inline void hash_val(size_t& seed, const T& val, const Types&... args){
hash_combine(seed, val);
hash_val(seed, args...);
}
// (1)
template<typename... Types>
inline size_t hash_val(const Types&... args){
size_t seed = 0;
hash_val(seed, args...);
return seed;
}
int main() {
unordered_set<Customer, CustomerHash> unorderedSet;
unordered_set<Customer,size_t(*)(const Customer&)>custset(20,customer_hash_func);
unordered_set<Customer> unset;
int *p= reinterpret_cast<int *>(new Customer());
cout<<hash_val(p)<<endl;
return 0;
}