This repository has been archived by the owner on May 31, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
hash_set
554 lines (465 loc) · 15.9 KB
/
hash_set
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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
// hash_set extension header
#pragma once
#ifndef _HASH_SET_
#define _HASH_SET_
#ifndef RC_INVOKED
#include <xhash>
#pragma pack(push,_CRT_PACKING)
#pragma warning(push,3)
#pragma push_macro("new")
#undef new
#ifndef _SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS
static_assert(false, "<hash_set> is deprecated and will be REMOVED. "
"Please use <unordered_set>. 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;
using _STD equal_to;
using _STD hash;
using _STD is_convertible;
using _STD pair;
using _STD _Hash;
#if _ITERATOR_DEBUG_LEVEL == 2
using _STD _Debug_range;
#endif /* _ITERATOR_DEBUG_LEVEL == 2 */
// TEMPLATE CLASS _Hset_traits
template<class _Kty, // key type (same as value 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 _Hset_traits
: public _Tr
{ // traits required to make _Hash behave like a set
public:
typedef _Kty key_type;
typedef _Kty value_type;
typedef _Tr key_compare;
typedef _Alloc allocator_type;
enum
{ // make multi parameter visible as an enum constant
_Multi = _Mfl};
static const bool _Standard = false;
_Hset_traits(const _Tr& _Traits = _Tr())
: _Tr(_Traits), _Max_buckets(0.0F)
{ // construct with specified comparator
}
typedef key_compare value_compare;
static const _Kty& _Kfn(const value_type& _Val)
{ // return entire value as key
return (_Val);
}
static int _Nonkfn(const value_type&)
{ // extract "non-key" from element value (for container equality)
return (0);
}
float& _Get_max_bucket_size() _NOEXCEPT
{ // return reference to current maximum bucket size
return (_Max_buckets);
}
const float& _Get_max_bucket_size() const _NOEXCEPT
{ // return const reference to current maximum bucket size
return (_Max_buckets);
}
float _Max_buckets; // current maximum bucket size
};
// TEMPLATE CLASS hash_set
template<class _Kty,
class _Tr = hash_compare<_Kty, less<_Kty> >,
class _Alloc = allocator<_Kty> >
class hash_set
: public _Hash<_Hset_traits<_Kty, _Tr, _Alloc, false> >
{ // hash table of key values, unique keys
public:
typedef hash_set<_Kty, _Tr, _Alloc> _Myt;
typedef _Hash<_Hset_traits<_Kty, _Tr, _Alloc, false> > _Mybase;
typedef _Kty key_type;
typedef _Tr key_compare;
typedef typename _Mybase::_Pairib _Pairib;
typedef typename _Mybase::value_compare value_compare;
typedef typename _Mybase::allocator_type allocator_type;
typedef typename _Mybase::size_type size_type;
typedef typename _Mybase::difference_type difference_type;
typedef typename _Mybase::pointer pointer;
typedef typename _Mybase::const_pointer const_pointer;
typedef typename _Mybase::reference reference;
typedef typename _Mybase::const_reference const_reference;
typedef typename _Mybase::iterator iterator;
typedef typename _Mybase::const_iterator const_iterator;
typedef typename _Mybase::value_type value_type;
hash_set()
: _Mybase(key_compare(), allocator_type())
{ // construct empty set from defaults
}
explicit hash_set(const allocator_type& _Al)
: _Mybase(key_compare(), _Al)
{ // construct empty set from defaults, allocator
}
hash_set(const _Myt& _Right)
: _Mybase(_Right,
_Right._List._Getal().select_on_container_copy_construction())
{ // construct set by copying _Right
}
hash_set(const _Myt& _Right, const allocator_type& _Al)
: _Mybase(_Right, _Al)
{ // construct set by copying _Right, allocator
}
explicit hash_set(const key_compare& _Traits)
: _Mybase(_Traits, allocator_type())
{ // construct empty set from comparator
}
hash_set(const key_compare& _Traits, const allocator_type& _Al)
: _Mybase(_Traits, _Al)
{ // construct empty set from comparator and allocator
}
template<class _Iter>
hash_set(_Iter _First, _Iter _Last)
: _Mybase(key_compare(), allocator_type())
{ // construct set from sequence, defaults
_Mybase::insert(_First, _Last);
}
template<class _Iter>
hash_set(_Iter _First, _Iter _Last,
const key_compare& _Traits)
: _Mybase(_Traits, allocator_type())
{ // construct set from sequence, comparator
_Mybase::insert(_First, _Last);
}
template<class _Iter>
hash_set(_Iter _First, _Iter _Last,
const key_compare& _Traits, const allocator_type& _Al)
: _Mybase(_Traits, _Al)
{ // construct set from sequence, comparator, and allocator
_Mybase::insert(_First, _Last);
}
_Myt& operator=(const _Myt& _Right)
{ // assign by copying _Right
_Mybase::operator=(_Right);
return (*this);
}
hash_set(_Myt&& _Right)
: _Mybase(_STD move(_Right), _STD move(_Right._List._Getal()))
{ // construct set by moving _Right
}
hash_set(_Myt&& _Right, const allocator_type& _Al)
: _Mybase(_STD move(_Right), _Al)
{ // construct set by moving _Right, allocator
}
_Myt& operator=(_Myt&& _Right)
{ // assign by moving _Right
_Mybase::operator=(_STD move(_Right));
return (*this);
}
_Pairib insert(value_type&& _Val)
{ // insert a {key, mapped} value
return (_Mybase::insert(_STD forward<value_type>(_Val)));
}
iterator insert(const_iterator _Where, value_type&& _Val)
{ // insert a {key, mapped} value, with hint
return (_Mybase::insert(_Where, _STD forward<value_type>(_Val)));
}
void swap(_Myt& _Right)
{ // exchange contents with non-movable _Right
_Mybase::swap(_Right);
}
hash_set(_XSTD initializer_list<value_type> _Ilist)
: _Mybase(key_compare(), allocator_type())
{ // construct from initializer_list, defaults
this->insert(_Ilist.begin(), _Ilist.end());
}
hash_set(_XSTD initializer_list<value_type> _Ilist,
const key_compare& _Pred)
: _Mybase(_Pred, allocator_type())
{ // construct from initializer_list, comparator
this->insert(_Ilist.begin(), _Ilist.end());
}
hash_set(_XSTD initializer_list<value_type> _Ilist,
const key_compare& _Pred, const allocator_type& _Al)
: _Mybase(_Pred, _Al)
{ // construct from initializer_list, comparator, and allocator
this->insert(_Ilist.begin(), _Ilist.end());
}
_Myt& operator=(_XSTD initializer_list<value_type> _Ilist)
{ // assign initializer_list
this->clear();
this->insert(_Ilist.begin(), _Ilist.end());
return (*this);
}
void insert(_XSTD initializer_list<value_type> _Ilist)
{ // insert initializer_list
this->insert(_Ilist.begin(), _Ilist.end());
}
_Pairib insert(const value_type& _Val)
{ // insert a key value
return (_Mybase::insert(_Val));
}
iterator insert(const_iterator _Where, const value_type& _Val)
{ // insert a key value, with hint
return (_Mybase::insert(_Where, _Val));
}
template<class _Iter>
void insert(_Iter _First, _Iter _Last)
{ // insert [_First, _Last), arbitrary iterators
_Mybase::insert(_First, _Last);
}
typedef _STD reverse_iterator<iterator> reverse_iterator;
typedef _STD reverse_iterator<const_iterator> const_reverse_iterator;
reverse_iterator rbegin() _NOEXCEPT
{ // return iterator for beginning of reversed mutable sequence
return (reverse_iterator(this->end()));
}
const_reverse_iterator rbegin() const _NOEXCEPT
{ // return iterator for beginning of reversed nonmutable sequence
return (const_reverse_iterator(this->end()));
}
reverse_iterator rend() _NOEXCEPT
{ // return iterator for end of reversed mutable sequence
return (reverse_iterator(this->begin()));
}
const_reverse_iterator rend() const _NOEXCEPT
{ // return iterator for end of reversed nonmutable sequence
return (const_reverse_iterator(this->begin()));
}
const_reverse_iterator crbegin() const _NOEXCEPT
{ // return iterator for beginning of reversed nonmutable sequence
return (rbegin());
}
const_reverse_iterator crend() const _NOEXCEPT
{ // return iterator for end of reversed nonmutable sequence
return (rend());
}
};
template<class _Kty,
class _Tr,
class _Alloc> inline
void swap(hash_set<_Kty, _Tr, _Alloc>& _Left,
hash_set<_Kty, _Tr, _Alloc>& _Right)
{ // swap _Left and _Right hash_sets
_Left.swap(_Right);
}
template<class _Kty,
class _Tr,
class _Alloc> inline
bool operator==(
const hash_set<_Kty, _Tr, _Alloc>& _Left,
const hash_set<_Kty, _Tr, _Alloc>& _Right)
{ // test for hash_set equality
return (_STD _Hash_equal(_Left, _Right));
}
template<class _Kty,
class _Tr,
class _Alloc> inline
bool operator!=(
const hash_set<_Kty, _Tr, _Alloc>& _Left,
const hash_set<_Kty, _Tr, _Alloc>& _Right)
{ // test for hash_set inequality
return (!(_Left == _Right));
}
// TEMPLATE CLASS hash_multiset
template<class _Kty,
class _Tr = hash_compare<_Kty, less<_Kty> >,
class _Alloc = allocator<_Kty> >
class hash_multiset
: public _Hash<_Hset_traits<_Kty, _Tr, _Alloc, true> >
{ // hash table of key values, non-unique keys
public:
typedef hash_multiset<_Kty, _Tr, _Alloc> _Myt;
typedef _Hash<_Hset_traits<_Kty, _Tr, _Alloc, true> > _Mybase;
typedef _Kty key_type;
typedef _Tr key_compare;
typedef typename _Mybase::value_compare value_compare;
typedef typename _Mybase::allocator_type allocator_type;
typedef typename _Mybase::size_type size_type;
typedef typename _Mybase::difference_type difference_type;
typedef typename _Mybase::pointer pointer;
typedef typename _Mybase::const_pointer const_pointer;
typedef typename _Mybase::reference reference;
typedef typename _Mybase::const_reference const_reference;
typedef typename _Mybase::iterator iterator;
typedef typename _Mybase::const_iterator const_iterator;
typedef typename _Mybase::value_type value_type;
hash_multiset()
: _Mybase(key_compare(), allocator_type())
{ // construct empty set from defaults
}
explicit hash_multiset(const allocator_type& _Al)
: _Mybase(key_compare(), _Al)
{ // construct empty set from defaults, allocator
}
hash_multiset(const _Myt& _Right)
: _Mybase(_Right,
_Right._List._Getal().select_on_container_copy_construction())
{ // construct set by copying _Right
}
hash_multiset(const _Myt& _Right, const allocator_type& _Al)
: _Mybase(_Right, _Al)
{ // construct set by copying _Right, allocator
}
explicit hash_multiset(const key_compare& _Traits)
: _Mybase(_Traits, allocator_type())
{ // construct empty set from comparator
}
hash_multiset(const key_compare& _Traits,
const allocator_type& _Al)
: _Mybase(_Traits, _Al)
{ // construct empty set from comparator and allocator
}
template<class _Iter>
hash_multiset(_Iter _First, _Iter _Last)
: _Mybase(key_compare(), allocator_type())
{ // construct from sequence, defaults
_Mybase::insert(_First, _Last);
}
template<class _Iter>
hash_multiset(_Iter _First, _Iter _Last,
const key_compare& _Traits)
: _Mybase(_Traits, allocator_type())
{ // construct from sequence, comparator
_Mybase::insert(_First, _Last);
}
template<class _Iter>
hash_multiset(_Iter _First, _Iter _Last,
const key_compare& _Traits, const allocator_type& _Al)
: _Mybase(_Traits, _Al)
{ // construct from sequence, comparator, and allocator
_Mybase::insert(_First, _Last);
}
_Myt& operator=(const _Myt& _Right)
{ // assign by copying _Right
_Mybase::operator=(_Right);
return (*this);
}
hash_multiset(_Myt&& _Right)
: _Mybase(_STD move(_Right), _STD move(_Right._List._Getal()))
{ // construct set by moving _Right
}
hash_multiset(_Myt&& _Right, const allocator_type& _Al)
: _Mybase(_STD move(_Right), _Al)
{ // construct set by moving _Right, allocator
}
_Myt& operator=(_Myt&& _Right)
{ // assign by moving _Right
_Mybase::operator=(_STD move(_Right));
return (*this);
}
iterator insert(value_type&& _Val)
{ // insert a {key, mapped} value
return (_Mybase::insert(_STD forward<value_type>(_Val)).first);
}
iterator insert(const_iterator _Where, value_type&& _Val)
{ // insert a {key, mapped} value, with hint
return (_Mybase::insert(_Where, _STD forward<value_type>(_Val)));
}
void swap(_Myt& _Right)
{ // exchange contents with non-movable _Right
_Mybase::swap(_Right);
}
hash_multiset(_XSTD initializer_list<value_type> _Ilist)
: _Mybase(key_compare(), allocator_type())
{ // construct from initializer_list, defaults
this->insert(_Ilist.begin(), _Ilist.end());
}
hash_multiset(_XSTD initializer_list<value_type> _Ilist,
const key_compare& _Pred)
: _Mybase(_Pred, allocator_type())
{ // construct from initializer_list, comparator
this->insert(_Ilist.begin(), _Ilist.end());
}
hash_multiset(_XSTD initializer_list<value_type> _Ilist,
const key_compare& _Pred, const allocator_type& _Al)
: _Mybase(_Pred, _Al)
{ // construct from initializer_list, comparator, and allocator
this->insert(_Ilist.begin(), _Ilist.end());
}
_Myt& operator=(_XSTD initializer_list<value_type> _Ilist)
{ // assign initializer_list
this->clear();
this->insert(_Ilist.begin(), _Ilist.end());
return (*this);
}
void insert(_XSTD initializer_list<value_type> _Ilist)
{ // insert initializer_list
this->insert(_Ilist.begin(), _Ilist.end());
}
iterator insert(const value_type& _Val)
{ // insert a key value
return (_Mybase::insert(_Val).first);
}
iterator insert(const_iterator _Where, const value_type& _Val)
{ // insert a key value, with hint
return (_Mybase::insert(_Where, _Val));
}
template<class _Iter>
void insert(_Iter _First, _Iter _Last)
{ // insert [_First, _Last), arbitrary iterators
_Mybase::insert(_First, _Last);
}
typedef _STD reverse_iterator<iterator> reverse_iterator;
typedef _STD reverse_iterator<const_iterator> const_reverse_iterator;
reverse_iterator rbegin() _NOEXCEPT
{ // return iterator for beginning of reversed mutable sequence
return (reverse_iterator(this->end()));
}
const_reverse_iterator rbegin() const _NOEXCEPT
{ // return iterator for beginning of reversed nonmutable sequence
return (const_reverse_iterator(this->end()));
}
reverse_iterator rend() _NOEXCEPT
{ // return iterator for end of reversed mutable sequence
return (reverse_iterator(this->begin()));
}
const_reverse_iterator rend() const _NOEXCEPT
{ // return iterator for end of reversed nonmutable sequence
return (const_reverse_iterator(this->begin()));
}
const_reverse_iterator crbegin() const _NOEXCEPT
{ // return iterator for beginning of reversed nonmutable sequence
return (rbegin());
}
const_reverse_iterator crend() const _NOEXCEPT
{ // return iterator for end of reversed nonmutable sequence
return (rend());
}
};
template<class _Kty,
class _Tr,
class _Alloc> inline
void swap(hash_multiset<_Kty, _Tr, _Alloc>& _Left,
hash_multiset<_Kty, _Tr, _Alloc>& _Right)
{ // swap _Left and _Right hash_multisets
_Left.swap(_Right);
}
template<class _Kty,
class _Tr,
class _Alloc> inline
bool operator==(
const hash_multiset<_Kty, _Tr, _Alloc>& _Left,
const hash_multiset<_Kty, _Tr, _Alloc>& _Right)
{ // test for hash_multiset equality
return (_STD _Hash_equal(_Left, _Right));
}
template<class _Kty,
class _Tr,
class _Alloc> inline
bool operator!=(
const hash_multiset<_Kty, _Tr, _Alloc>& _Left,
const hash_multiset<_Kty, _Tr, _Alloc>& _Right)
{ // test for hash_multiset inequality
return (!(_Left == _Right));
}
} // namespace stdext
_STD_BEGIN
using stdext::hash_set;
using stdext::hash_multiset;
_STD_END
#pragma pop_macro("new")
#pragma warning(pop)
#pragma pack(pop)
#endif /* RC_INVOKED */
#endif /* _HASH_SET_ */
/*
* Copyright (c) by P.J. Plauger. All rights reserved.
* Consult your license regarding permissions and restrictions.
V6.50:0009 */