-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.h
150 lines (128 loc) · 4.38 KB
/
main.h
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
140
141
142
143
144
145
146
147
148
149
150
#include <list>
#include <vector>
#include <stdexcept>
template<class KeyType, class ValueType, class Hash = std::hash<KeyType>>
class HashMap {
private:
std::vector<std::list<typename std::list<std::pair<const KeyType, ValueType>>::iterator>> table;
std::list<std::pair<const KeyType, ValueType>> elements;
Hash hash;
size_t tableSize = 0;
public:
HashMap(Hash hash = Hash()): hash(hash) {
tableSize = 0;
table = std::vector<std::list<typename std::list<std::pair<const KeyType, ValueType>>::iterator>>(1);
}
template<typename Iter>
HashMap(Iter begin, Iter end, Hash hash = Hash()): hash(hash) {
tableSize = 0;
table = std::vector<std::list<typename std::list<std::pair<const KeyType, ValueType>>::iterator>>(1);
while (begin != end) {
insert(*begin);
++begin;
}
}
HashMap(const std::initializer_list<std::pair<const KeyType, ValueType>>& elements, Hash hash = Hash())
: HashMap(elements.begin(), elements.end(), hash) {}
size_t size() const {
return tableSize;
}
bool empty() const {
return !size();
}
Hash hash_function() const {
return hash;
}
void insert(const std::pair<const KeyType, ValueType>& elem) {
size_t pos = hash(elem.first) % table.size();
bool exist = false;
for (const auto& p : table[pos]) {
if (p->first == elem.first) exist = true;
}
if (!exist) {
elements.emplace_front(elem); // в начало для того, чтобы брать указатель как begin()
table[pos].push_back(elements.begin());
++tableSize;
}
if (3 * tableSize > 2 * table.size()) {
table = std::vector<std::list<typename std::list<std::pair<const KeyType, ValueType>>::iterator>>(2 * table.size() + 1);
for (auto it = elements.begin(); it != elements.end(); it++) {
size_t pos = hash(it->first) % table.size();
table[pos].push_back(it);
}
}
}
void erase(const KeyType& key) {
size_t pos = hash(key) % table.size();
for (auto it = table[pos].begin(); it != table[pos].end(); ++it) {
if ((*it)->first == key) {
elements.erase(*it);
table[pos].erase(it);
--tableSize;
break;
}
}
}
using iterator = typename std::list<std::pair<const KeyType, ValueType>>::iterator;
using const_iterator = typename std::list<std::pair<const KeyType, ValueType>>::const_iterator;
iterator begin() {
return elements.begin();
}
iterator end() {
return elements.end();
}
const_iterator begin() const {
return elements.begin();
}
const_iterator end() const {
return elements.end();
}
ValueType& operator[](const KeyType& key) {
insert({key, ValueType()});
return find(key)->second;
}
const ValueType& at(const KeyType& key) const {
if (this->find(key) == elements.end()) {
throw std::out_of_range("");
}
size_t pos = hash(key) % table.size();
for (const auto& it : table[pos]) {
if (it->first == key) {
return it->second;
}
}
}
HashMap<KeyType, ValueType, Hash>& operator=(const HashMap<KeyType, ValueType, Hash>& other) {
this->table = other.table;
this->hash = other.hash;
this->elements.clear();
this->tableSize = other.tableSize;
for (const auto& it : other.elements) {
this->elements.emplace_back(it);
}
return *this;
}
void clear() {
tableSize = 0;
elements.clear();
table = std::vector<std::list<typename std::list<std::pair<const KeyType, ValueType>>::iterator>>(1);
}
iterator find(const KeyType &key) {
size_t pos = hash(key) % table.size();
for (const auto& it : table[pos]) {
if (it->first == key) {
return it;
}
}
return elements.end();
}
const_iterator find(const KeyType &key) const {
size_t pos = hash(key) % table.size();
for (const auto& it : table[pos]) {
if (it->first == key) {
return it;
}
}
return elements.end();
}
};