-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.cpp
139 lines (99 loc) · 2.4 KB
/
main.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#include <iostream>
#include <unordered_map>
#include "Key.h"
#include "fn.h"
namespace std
{
// Определение для сырого указателя никак не будет использовано для умного.
template <>
struct hash<Key const*>
{
std::size_t operator()(Key const* const aKey) const
{
return aKey->GetValue();
}
};
template <>
struct equal_to<Key const*>
{
bool operator()(Key const* const lhs, Key const* const rhs) const
{
return lhs->GetValue() == rhs->GetValue();
}
};
}
namespace std
{
// Нужно определить до первого использования.
// Иначе ошибки:
// Explicit specialization of 'std::hash<std::shared_ptr<Key>>' after instantiation
// Explicit specialization of 'std::equal_to<std::shared_ptr<Key>>' after instantiation
template <>
struct hash<Key_S>
{
std::size_t operator()(Key_S const& aKey) const
{
return aKey->GetValue();
}
};
template <>
struct equal_to<Key_S>
{
bool operator()(Key_S lhs, Key_S rhs) const
{
return lhs->GetValue() == rhs->GetValue();
}
};
}
void test1()
{
std::cout << "Output # 1:" << std::endl;
auto k1 = std::make_shared<Key>(1);
auto k2 = std::make_shared<Key>(2);
auto kOne = std::make_shared<Key>(1);
auto kTwo = std::make_shared<Key>(2);
std::unordered_map<Key_S, int> keyToValue;
keyToValue.insert({k1, 1});
keyToValue.insert({k2, 2});
keyToValue.insert_or_assign(kOne, 11);
keyToValue.insert_or_assign(kTwo, 22);
for (auto const& [k, v]: keyToValue)
{
std::cout << k->GetValue() << " -> " << v << std::endl;
}
}
// Output # 1:
// 2 -> 22
// 1 -> 11
void test3()
{
std::cout << "Output # 3:" << std::endl;
auto k1 = std::make_shared<Key>(1);
auto k2 = std::make_shared<Key>(2);
auto kOne = std::make_shared<Key>(1);
auto kTwo = std::make_shared<Key>(2);
std::unordered_map<Key_S, int> keyToValue;
keyToValue.insert({k1, 1});
keyToValue.insert({k2, 2});
keyToValue.insert_or_assign(kOne, 11);
keyToValue.insert_or_assign(kTwo, 22);
std::cout << "# 1:" << std::endl;
test3_2(keyToValue);
std::cout << "# 2:" << std::endl;
test3_3(keyToValue);
}
// Output # 3:
// # 1:
// 2 -> 22
// 1 -> 11
// # 2:
// 1 -> 11
// 2 -> 22
int main()
{
test1();
test2();
test3();
test4();
return 0;
}