-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathhash_map
471 lines (374 loc) · 17.9 KB
/
hash_map
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
// hash_map extension header
// Copyright (c) Microsoft Corporation.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#pragma once
#ifndef _HASH_MAP_
#define _HASH_MAP_
#include <yvals_core.h>
#if _STL_COMPILER_PREPROCESSOR
#include <xhash>
#pragma pack(push, _CRT_PACKING)
#pragma warning(push, _STL_WARNING_LEVEL)
#pragma warning(disable : _STL_DISABLED_WARNINGS)
_STL_DISABLE_CLANG_WARNINGS
#pragma push_macro("new")
#undef new
#ifndef _SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS
#error <hash_map> is deprecated and will be REMOVED. Please use <unordered_map>. You can define \
_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS to acknowledge that you have received this warning.
#endif // _SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS
namespace stdext {
using _STD allocator;
using _STD enable_if_t;
using _STD is_constructible_v;
using _STD pair;
using _STD swap;
using _STD _Hash;
using _STD _Is_nothrow_swappable;
using _STD _Swap_adl;
using _STD _Xout_of_range;
template <class _Kty, // key type
class _Ty, // mapped type
class _Tr, // comparator predicate type
class _Alloc, // actual allocator type (should be value allocator)
bool _Mfl> // true if multiple equivalent keys are permitted
class _Hmap_traits : public _Tr { // traits required to make _Hash behave like a map
public:
using key_type = _Kty;
using value_type = pair<const _Kty, _Ty>;
using _Mutable_value_type = pair<_Kty, _Ty>;
using key_compare = _Tr;
using allocator_type = _Alloc;
#if _HAS_CXX17
using node_type =
_STD _Node_handle<_STD _List_node<value_type, typename _STD allocator_traits<_Alloc>::void_pointer>, _Alloc,
_STD _Node_handle_map_base, _Kty, _Ty>;
#endif // _HAS_CXX17
static constexpr bool _Multi = _Mfl;
static constexpr bool _Standard = false;
template <class... _Args>
using _In_place_key_extractor = _STD _In_place_key_extract_map<_Kty, _Args...>;
template <class>
using _Deduce_key = const _Kty&;
using key_equal = _Tr;
_Hmap_traits() = default;
_Hmap_traits(const _Tr& _Traits) noexcept(_STD is_nothrow_copy_constructible_v<_Tr>) : _Tr(_Traits) {}
class value_compare {
public:
using first_argument_type = value_type;
using second_argument_type = value_type;
using result_type = bool;
_NODISCARD bool operator()(const value_type& _Left, const value_type& _Right) const
noexcept(noexcept(_Keycompobj(_Left.first, _Right.first))) {
// test if _Left precedes _Right by comparing just keys
return _Keycompobj(_Left.first, _Right.first);
}
value_compare(const key_compare& _Keycomparg) noexcept(_STD is_nothrow_copy_constructible_v<key_compare>)
: _Keycompobj(_Keycomparg) {}
key_compare _Keycompobj;
};
template <class _Ty1, class _Ty2>
_NODISCARD static const _Kty& _Kfn(const pair<_Ty1, _Ty2>& _Val) noexcept { // extract key from element value
return _Val.first;
}
template <class _Ty1, class _Ty2>
_NODISCARD static const _Ty2& _Nonkfn(const pair<_Ty1, _Ty2>& _Val) noexcept {
// extract non-key from element value
return _Val.second;
}
_NODISCARD float& _Get_max_bucket_size() noexcept {
return _Max_buckets;
}
_NODISCARD const float& _Get_max_bucket_size() const noexcept {
return _Max_buckets;
}
void swap(_Hmap_traits& _Rhs) noexcept(_Is_nothrow_swappable<_Tr>::value) {
_Swap_adl(static_cast<_Tr&>(*this), static_cast<_Tr&>(_Rhs));
_STD swap(_Max_buckets, _Rhs._Max_buckets);
}
float _Max_buckets = 0.0F; // current maximum bucket size
};
template <class _Kty, class _Ty, class _Tr = hash_compare<_Kty, less<_Kty>>,
class _Alloc = allocator<pair<const _Kty, _Ty>>>
class hash_map : public _Hash<_Hmap_traits<_Kty, _Ty, _Tr, _Alloc, false>> {
// hash table of {key, mapped} values, unique keys
public:
using _Mybase = _Hash<_Hmap_traits<_Kty, _Ty, _Tr, _Alloc, false>>;
using key_type = _Kty;
using mapped_type = _Ty;
using referent_type = _Ty;
using key_compare = _Tr;
using value_compare = typename _Mybase::_Value_compare;
using value_type = pair<const _Kty, _Ty>;
using allocator_type = typename _Mybase::allocator_type;
using size_type = typename _Mybase::size_type;
using difference_type = typename _Mybase::difference_type;
using pointer = typename _Mybase::pointer;
using const_pointer = typename _Mybase::const_pointer;
using reference = value_type&;
using const_reference = const value_type&;
using iterator = typename _Mybase::iterator;
using const_iterator = typename _Mybase::const_iterator;
using _Alnode = typename _Mybase::_Alnode;
using _Alnode_traits = typename _Mybase::_Alnode_traits;
#if _HAS_CXX17
using insert_return_type = _STD _Insert_return_type<iterator, typename _Mybase::node_type>;
#endif // _HAS_CXX17
hash_map() : _Mybase(key_compare(), allocator_type()) {}
explicit hash_map(const allocator_type& _Al) : _Mybase(key_compare(), _Al) {}
hash_map(const hash_map& _Right)
: _Mybase(_Right, _Alnode_traits::select_on_container_copy_construction(_Right._Getal())) {}
hash_map(const hash_map& _Right, const allocator_type& _Al) : _Mybase(_Right, _Al) {}
explicit hash_map(const key_compare& _Traits) : _Mybase(_Traits, allocator_type()) {}
hash_map(const key_compare& _Traits, const allocator_type& _Al) : _Mybase(_Traits, _Al) {}
template <class _Iter>
hash_map(_Iter _First, _Iter _Last) : _Mybase(key_compare(), allocator_type()) {
insert(_First, _Last);
}
template <class _Iter>
hash_map(_Iter _First, _Iter _Last, const key_compare& _Traits) : _Mybase(_Traits, allocator_type()) {
insert(_First, _Last);
}
template <class _Iter>
hash_map(_Iter _First, _Iter _Last, const key_compare& _Traits, const allocator_type& _Al)
: _Mybase(_Traits, _Al) {
insert(_First, _Last);
}
hash_map& operator=(const hash_map& _Right) {
_Mybase::operator=(_Right);
return *this;
}
hash_map(hash_map&& _Right) : _Mybase(_STD move(_Right)) {}
hash_map(hash_map&& _Right, const allocator_type& _Al) : _Mybase(_STD move(_Right), _Al) {}
hash_map& operator=(hash_map&& _Right) noexcept(noexcept(_Mybase::operator=(_STD move(_Right)))) {
_Mybase::operator=(_STD move(_Right));
return *this;
}
mapped_type& operator[](key_type&& _Keyval) {
return this->_Try_emplace(_STD move(_Keyval)).first->_Myval.second;
}
void swap(hash_map& _Right) noexcept(noexcept(_Mybase::swap(_Right))) {
_Mybase::swap(_Right);
}
using _Mybase::insert;
template <class _Valty, enable_if_t<is_constructible_v<value_type, _Valty>, int> = 0>
pair<iterator, bool> insert(_Valty&& _Val) {
return this->emplace(_STD forward<_Valty>(_Val));
}
template <class _Valty, enable_if_t<is_constructible_v<value_type, _Valty>, int> = 0>
iterator insert(const_iterator _Where, _Valty&& _Val) {
return this->emplace_hint(_Where, _STD forward<_Valty>(_Val));
}
hash_map(_STD initializer_list<value_type> _Ilist) : _Mybase(key_compare(), allocator_type()) {
insert(_Ilist);
}
hash_map(_STD initializer_list<value_type> _Ilist, const key_compare& _Pred)
: _Mybase(_Pred, allocator_type()) {
insert(_Ilist);
}
hash_map(_STD initializer_list<value_type> _Ilist, const key_compare& _Pred, const allocator_type& _Al)
: _Mybase(_Pred, _Al) {
insert(_Ilist);
}
hash_map& operator=(_STD initializer_list<value_type> _Ilist) {
this->clear();
insert(_Ilist);
return *this;
}
mapped_type& operator[](const key_type& _Keyval) {
return this->_Try_emplace(_Keyval).first->_Myval.second;
}
_NODISCARD mapped_type& at(const key_type& _Keyval) {
const auto _Target = this->_Find_last(_Keyval, this->_Traitsobj(_Keyval));
if (_Target._Duplicate) {
return _Target._Duplicate->_Myval.second;
}
_Xout_of_range("invalid hash_map<K, T> key");
}
_NODISCARD const mapped_type& at(const key_type& _Keyval) const {
const auto _Target = this->_Find_last(_Keyval, this->_Traitsobj(_Keyval));
if (_Target._Duplicate) {
return _Target._Duplicate->_Myval.second;
}
_Xout_of_range("invalid hash_map<K, T> key");
}
using reverse_iterator = _STD reverse_iterator<iterator>;
using const_reverse_iterator = _STD reverse_iterator<const_iterator>;
_NODISCARD reverse_iterator rbegin() noexcept {
return reverse_iterator(this->end());
}
_NODISCARD const_reverse_iterator rbegin() const noexcept {
return const_reverse_iterator(this->end());
}
_NODISCARD reverse_iterator rend() noexcept {
return reverse_iterator(this->begin());
}
_NODISCARD const_reverse_iterator rend() const noexcept {
return const_reverse_iterator(this->begin());
}
_NODISCARD const_reverse_iterator crbegin() const noexcept {
return rbegin();
}
_NODISCARD const_reverse_iterator crend() const noexcept {
return rend();
}
_NODISCARD key_compare key_comp() const {
return this->_Traitsobj;
}
_NODISCARD value_compare value_comp() const {
return value_compare(key_comp());
}
using _Mybase::_Unchecked_begin;
using _Mybase::_Unchecked_end;
};
template <class _Kty, class _Ty, class _Tr, class _Alloc>
void swap(hash_map<_Kty, _Ty, _Tr, _Alloc>& _Left, hash_map<_Kty, _Ty, _Tr, _Alloc>& _Right) noexcept(
noexcept(_Left.swap(_Right))) {
_Left.swap(_Right);
}
template <class _Kty, class _Ty, class _Tr, class _Alloc>
_NODISCARD bool operator==(
const hash_map<_Kty, _Ty, _Tr, _Alloc>& _Left, const hash_map<_Kty, _Ty, _Tr, _Alloc>& _Right) {
return _STD _Hash_equal(_Left, _Right);
}
template <class _Kty, class _Ty, class _Tr, class _Alloc>
_NODISCARD bool operator!=(
const hash_map<_Kty, _Ty, _Tr, _Alloc>& _Left, const hash_map<_Kty, _Ty, _Tr, _Alloc>& _Right) {
return !(_Left == _Right);
}
template <class _Kty, class _Ty, class _Tr = hash_compare<_Kty, less<_Kty>>,
class _Alloc = allocator<pair<const _Kty, _Ty>>>
class hash_multimap : public _Hash<_Hmap_traits<_Kty, _Ty, _Tr, _Alloc, true>> {
// hash table of {key, mapped} values, non-unique keys
public:
using _Mybase = _Hash<_Hmap_traits<_Kty, _Ty, _Tr, _Alloc, true>>;
using key_type = _Kty;
using mapped_type = _Ty;
using referent_type = _Ty; // old name, magically gone
using key_compare = _Tr;
using value_compare = typename _Mybase::_Value_compare;
using value_type = pair<const _Kty, _Ty>;
using allocator_type = typename _Mybase::allocator_type;
using size_type = typename _Mybase::size_type;
using difference_type = typename _Mybase::difference_type;
using pointer = typename _Mybase::pointer;
using const_pointer = typename _Mybase::const_pointer;
using reference = value_type&;
using const_reference = const value_type&;
using iterator = typename _Mybase::iterator;
using const_iterator = typename _Mybase::const_iterator;
using _Alnode = typename _Mybase::_Alnode;
using _Alnode_traits = typename _Mybase::_Alnode_traits;
hash_multimap() : _Mybase(key_compare(), allocator_type()) {}
explicit hash_multimap(const allocator_type& _Al) : _Mybase(key_compare(), _Al) {}
hash_multimap(const hash_multimap& _Right)
: _Mybase(_Right, _Alnode_traits::select_on_container_copy_construction(_Right._Getal())) {}
hash_multimap(const hash_multimap& _Right, const allocator_type& _Al) : _Mybase(_Right, _Al) {}
explicit hash_multimap(const key_compare& _Traits) : _Mybase(_Traits, allocator_type()) {}
hash_multimap(const key_compare& _Traits, const allocator_type& _Al) : _Mybase(_Traits, _Al) {}
template <class _Iter>
hash_multimap(_Iter _First, _Iter _Last) : _Mybase(key_compare(), allocator_type()) {
insert(_First, _Last);
}
template <class _Iter>
hash_multimap(_Iter _First, _Iter _Last, const key_compare& _Traits) : _Mybase(_Traits, allocator_type()) {
insert(_First, _Last);
}
template <class _Iter>
hash_multimap(_Iter _First, _Iter _Last, const key_compare& _Traits, const allocator_type& _Al)
: _Mybase(_Traits, _Al) {
insert(_First, _Last);
}
hash_multimap& operator=(const hash_multimap& _Right) {
_Mybase::operator=(_Right);
return *this;
}
hash_multimap(hash_multimap&& _Right) : _Mybase(_STD move(_Right)) {}
hash_multimap(hash_multimap&& _Right, const allocator_type& _Al) : _Mybase(_STD move(_Right), _Al) {}
hash_multimap& operator=(hash_multimap&& _Right) noexcept(noexcept(_Mybase::operator=(_STD move(_Right)))) {
_Mybase::operator=(_STD move(_Right));
return *this;
}
void swap(hash_multimap& _Right) noexcept(noexcept(_Mybase::swap(_Right))) {
_Mybase::swap(_Right);
}
using _Mybase::insert;
template <class _Valty, enable_if_t<is_constructible_v<value_type, _Valty>, int> = 0>
iterator insert(_Valty&& _Val) {
return this->emplace(_STD forward<_Valty>(_Val));
}
template <class _Valty, enable_if_t<is_constructible_v<value_type, _Valty>, int> = 0>
iterator insert(const_iterator _Where, _Valty&& _Val) {
return this->emplace_hint(_Where, _STD forward<_Valty>(_Val));
}
hash_multimap(_STD initializer_list<value_type> _Ilist) : _Mybase(key_compare(), allocator_type()) {
insert(_Ilist);
}
hash_multimap(_STD initializer_list<value_type> _Ilist, const key_compare& _Pred)
: _Mybase(_Pred, allocator_type()) {
insert(_Ilist);
}
hash_multimap(_STD initializer_list<value_type> _Ilist, const key_compare& _Pred, const allocator_type& _Al)
: _Mybase(_Pred, _Al) {
insert(_Ilist);
}
hash_multimap& operator=(_STD initializer_list<value_type> _Ilist) {
this->clear();
insert(_Ilist);
return *this;
}
using reverse_iterator = _STD reverse_iterator<iterator>;
using const_reverse_iterator = _STD reverse_iterator<const_iterator>;
_NODISCARD reverse_iterator rbegin() noexcept {
return reverse_iterator(this->end());
}
_NODISCARD const_reverse_iterator rbegin() const noexcept {
return const_reverse_iterator(this->end());
}
_NODISCARD reverse_iterator rend() noexcept {
return reverse_iterator(this->begin());
}
_NODISCARD const_reverse_iterator rend() const noexcept {
return const_reverse_iterator(this->begin());
}
_NODISCARD const_reverse_iterator crbegin() const noexcept {
return rbegin();
}
_NODISCARD const_reverse_iterator crend() const noexcept {
return rend();
}
_NODISCARD key_compare key_comp() const {
return this->_Traitsobj;
}
_NODISCARD value_compare value_comp() const {
return value_compare(key_comp());
}
using _Mybase::_Unchecked_begin;
using _Mybase::_Unchecked_end;
};
template <class _Kty, class _Ty, class _Tr, class _Alloc>
void swap(hash_multimap<_Kty, _Ty, _Tr, _Alloc>& _Left, hash_multimap<_Kty, _Ty, _Tr, _Alloc>& _Right) noexcept(
noexcept(_Left.swap(_Right))) {
_Left.swap(_Right);
}
template <class _Kty, class _Ty, class _Tr, class _Alloc>
_NODISCARD bool operator==(
const hash_multimap<_Kty, _Ty, _Tr, _Alloc>& _Left, const hash_multimap<_Kty, _Ty, _Tr, _Alloc>& _Right) {
return _STD _Hash_equal(_Left, _Right);
}
template <class _Kty, class _Ty, class _Tr, class _Alloc>
_NODISCARD bool operator!=(
const hash_multimap<_Kty, _Ty, _Tr, _Alloc>& _Left, const hash_multimap<_Kty, _Ty, _Tr, _Alloc>& _Right) {
return !(_Left == _Right);
}
} // namespace stdext
_STD_BEGIN
using _STDEXT hash_map;
using _STDEXT hash_multimap;
_STD_END
#pragma pop_macro("new")
_STL_RESTORE_CLANG_WARNINGS
#pragma warning(pop)
#pragma pack(pop)
#endif // _STL_COMPILER_PREPROCESSOR
#endif // _HASH_MAP_