31 #define _HASHTABLE_H 1 33 #pragma GCC system_header 37 namespace std _GLIBCXX_VISIBILITY(default)
39 _GLIBCXX_BEGIN_NAMESPACE_VERSION
41 template<
typename _Tp,
typename _Hash>
44 __is_fast_hash<_Hash>,
46 __detail::__is_noexcept_hash<_Tp, _Hash>>>;
166 template<
typename _Key,
typename _Value,
typename _Alloc,
167 typename _ExtractKey,
typename _Equal,
168 typename _H1,
typename _H2,
typename _Hash,
169 typename _RehashPolicy,
typename _Traits>
172 _H1, _H2, _Hash, _Traits>,
174 _H1, _H2, _Hash, _RehashPolicy, _Traits>,
176 _H1, _H2, _Hash, _RehashPolicy, _Traits>,
178 _H1, _H2, _Hash, _RehashPolicy, _Traits>,
180 _H1, _H2, _Hash, _RehashPolicy, _Traits>,
182 __alloc_rebind<_Alloc,
183 __detail::_Hash_node<_Value,
184 _Traits::__hash_cached::value>>>
186 using __traits_type = _Traits;
187 using __hash_cached =
typename __traits_type::__hash_cached;
189 using __node_alloc_type = __alloc_rebind<_Alloc, __node_type>;
193 using __value_alloc_traits =
195 using __node_alloc_traits =
201 typedef _Key key_type;
202 typedef _Value value_type;
203 typedef _Alloc allocator_type;
204 typedef _Equal key_equal;
208 typedef typename __value_alloc_traits::pointer pointer;
209 typedef typename __value_alloc_traits::const_pointer const_pointer;
210 typedef value_type& reference;
211 typedef const value_type& const_reference;
214 using __rehash_type = _RehashPolicy;
215 using __rehash_state =
typename __rehash_type::_State;
217 using __constant_iterators =
typename __traits_type::__constant_iterators;
218 using __unique_keys =
typename __traits_type::__unique_keys;
220 using __key_extract =
typename std::conditional<
221 __constant_iterators::value,
223 __detail::_Select1st>::type;
226 _Hashtable_base<_Key, _Value, _ExtractKey,
227 _Equal, _H1, _H2, _Hash, _Traits>;
230 using __hash_code =
typename __hashtable_base::__hash_code;
231 using __ireturn_type =
typename __hashtable_base::__ireturn_type;
234 _Equal, _H1, _H2, _Hash,
235 _RehashPolicy, _Traits>;
240 _RehashPolicy, _Traits>;
243 _Equal, _H1, _H2, _Hash,
244 _RehashPolicy, _Traits>;
246 using __reuse_or_alloc_node_type =
247 __detail::_ReuseOrAllocNode<__node_alloc_type>;
250 template<
typename _Cond>
251 using __if_hash_cached = __or_<__not_<__hash_cached>, _Cond>;
253 template<
typename _Cond>
254 using __if_hash_not_cached = __or_<__hash_cached, _Cond>;
260 struct __hash_code_base_access : __hash_code_base
261 {
using __hash_code_base::_M_bucket_index; };
265 static_assert(noexcept(declval<const __hash_code_base_access&>()
268 "Cache the hash code or qualify your functors involved" 269 " in hash code and bucket index computation with noexcept");
276 static_assert(__if_hash_cached<is_default_constructible<_H2>>::value,
277 "Functor used to map hash code to bucket index" 278 " must be default constructible");
280 template<
typename _Keya,
typename _Valuea,
typename _Alloca,
281 typename _ExtractKeya,
typename _Equala,
282 typename _H1a,
typename _H2a,
typename _Hasha,
283 typename _RehashPolicya,
typename _Traitsa,
287 template<
typename _Keya,
typename _Valuea,
typename _Alloca,
288 typename _ExtractKeya,
typename _Equala,
289 typename _H1a,
typename _H2a,
typename _Hasha,
290 typename _RehashPolicya,
typename _Traitsa>
293 template<
typename _Keya,
typename _Valuea,
typename _Alloca,
294 typename _ExtractKeya,
typename _Equala,
295 typename _H1a,
typename _H2a,
typename _Hasha,
296 typename _RehashPolicya,
typename _Traitsa,
297 bool _Constant_iteratorsa,
bool _Unique_keysa>
301 using size_type =
typename __hashtable_base::size_type;
302 using difference_type =
typename __hashtable_base::difference_type;
308 using const_local_iterator =
typename __hashtable_base::
309 const_local_iterator;
312 __bucket_type* _M_buckets = &_M_single_bucket;
313 size_type _M_bucket_count = 1;
314 __node_base _M_before_begin;
315 size_type _M_element_count = 0;
316 _RehashPolicy _M_rehash_policy;
324 __bucket_type _M_single_bucket =
nullptr;
327 _M_uses_single_bucket(__bucket_type* __bkts)
const 328 {
return __builtin_expect(__bkts == &_M_single_bucket,
false); }
331 _M_uses_single_bucket()
const 332 {
return _M_uses_single_bucket(_M_buckets); }
335 _M_base_alloc() {
return *
this; }
338 _M_allocate_buckets(size_type __n)
340 if (__builtin_expect(__n == 1,
false))
342 _M_single_bucket =
nullptr;
343 return &_M_single_bucket;
346 return __hashtable_alloc::_M_allocate_buckets(__n);
350 _M_deallocate_buckets(__bucket_type* __bkts, size_type __n)
352 if (_M_uses_single_bucket(__bkts))
355 __hashtable_alloc::_M_deallocate_buckets(__bkts, __n);
359 _M_deallocate_buckets()
360 { _M_deallocate_buckets(_M_buckets, _M_bucket_count); }
365 _M_bucket_begin(size_type __bkt)
const;
369 {
return static_cast<__node_type*
>(_M_before_begin._M_nxt); }
371 template<
typename _NodeGenerator>
373 _M_assign(
const _Hashtable&,
const _NodeGenerator&);
384 _Hashtable(
const _H1& __h1,
const _H2& __h2,
const _Hash& __h,
385 const _Equal& __eq,
const _ExtractKey& __exk,
386 const allocator_type& __a)
395 const _H1&,
const _H2&,
const _Hash&,
396 const _Equal&,
const _ExtractKey&,
397 const allocator_type&);
399 template<
typename _InputIterator>
400 _Hashtable(_InputIterator __first, _InputIterator __last,
401 size_type __bucket_hint,
402 const _H1&,
const _H2&,
const _Hash&,
403 const _Equal&,
const _ExtractKey&,
404 const allocator_type&);
422 const _H1& __hf = _H1(),
423 const key_equal& __eql = key_equal(),
424 const allocator_type& __a = allocator_type())
425 :
_Hashtable(__n, __hf, _H2(), _Hash(), __eql,
426 __key_extract(), __a)
429 template<
typename _InputIterator>
430 _Hashtable(_InputIterator __f, _InputIterator __l,
432 const _H1& __hf = _H1(),
433 const key_equal& __eql = key_equal(),
434 const allocator_type& __a = allocator_type())
435 :
_Hashtable(__f, __l, __n, __hf, _H2(), _Hash(), __eql,
436 __key_extract(), __a)
441 const _H1& __hf = _H1(),
442 const key_equal& __eql = key_equal(),
443 const allocator_type& __a = allocator_type())
444 :
_Hashtable(__l.begin(), __l.end(), __n, __hf, _H2(), _Hash(), __eql,
445 __key_extract(), __a)
453 noexcept(__node_alloc_traits::_S_nothrow_move()
454 && is_nothrow_move_assignable<_H1>::value
455 && is_nothrow_move_assignable<_Equal>::value)
457 constexpr
bool __move_storage =
458 __node_alloc_traits::_S_propagate_on_move_assign()
459 || __node_alloc_traits::_S_always_equal();
467 __reuse_or_alloc_node_type __roan(_M_begin(), *
this);
468 _M_before_begin._M_nxt =
nullptr;
470 this->_M_insert_range(__l.begin(), __l.end(), __roan);
478 noexcept(__is_nothrow_swappable<_H1>::value
479 && __is_nothrow_swappable<_Equal>::value);
484 {
return iterator(_M_begin()); }
487 begin()
const noexcept
488 {
return const_iterator(_M_begin()); }
492 {
return iterator(
nullptr); }
496 {
return const_iterator(
nullptr); }
500 {
return const_iterator(_M_begin()); }
503 cend()
const noexcept
504 {
return const_iterator(
nullptr); }
507 size()
const noexcept
508 {
return _M_element_count; }
511 empty()
const noexcept
512 {
return size() == 0; }
515 get_allocator()
const noexcept
516 {
return allocator_type(this->_M_node_allocator()); }
519 max_size()
const noexcept
520 {
return __node_alloc_traits::max_size(this->_M_node_allocator()); }
525 {
return this->_M_eq(); }
531 bucket_count()
const noexcept
532 {
return _M_bucket_count; }
535 max_bucket_count()
const noexcept
536 {
return max_size(); }
539 bucket_size(size_type __n)
const 543 bucket(
const key_type& __k)
const 544 {
return _M_bucket_index(__k, this->_M_hash_code(__k)); }
549 return local_iterator(*
this, _M_bucket_begin(__n),
550 __n, _M_bucket_count);
555 {
return local_iterator(*
this,
nullptr, __n, _M_bucket_count); }
558 begin(size_type __n)
const 560 return const_local_iterator(*
this, _M_bucket_begin(__n),
561 __n, _M_bucket_count);
565 end(size_type __n)
const 566 {
return const_local_iterator(*
this,
nullptr, __n, _M_bucket_count); }
570 cbegin(size_type __n)
const 572 return const_local_iterator(*
this, _M_bucket_begin(__n),
573 __n, _M_bucket_count);
577 cend(size_type __n)
const 578 {
return const_local_iterator(*
this,
nullptr, __n, _M_bucket_count); }
581 load_factor()
const noexcept
583 return static_cast<float>(size()) / static_cast<float>(bucket_count());
592 __rehash_policy()
const 593 {
return _M_rehash_policy; }
596 __rehash_policy(
const _RehashPolicy& __pol)
597 { _M_rehash_policy = __pol; }
601 find(
const key_type& __k);
604 find(
const key_type& __k)
const;
607 count(
const key_type& __k)
const;
610 equal_range(
const key_type& __k);
613 equal_range(
const key_type& __k)
const;
619 {
return __hash_code_base::_M_bucket_index(__n, _M_bucket_count); }
622 _M_bucket_index(
const key_type& __k, __hash_code __c)
const 623 {
return __hash_code_base::_M_bucket_index(__k, __c, _M_bucket_count); }
628 _M_find_before_node(size_type,
const key_type&, __hash_code)
const;
631 _M_find_node(size_type __bkt,
const key_type& __key,
632 __hash_code __c)
const 634 __node_base* __before_n = _M_find_before_node(__bkt, __key, __c);
636 return static_cast<__node_type*
>(__before_n->_M_nxt);
646 _M_remove_bucket_begin(size_type __bkt,
__node_type* __next_n,
647 size_type __next_bkt);
651 _M_get_previous_node(size_type __bkt, __node_base* __n);
657 _M_insert_unique_node(size_type __bkt, __hash_code __code,
666 template<
typename... _Args>
670 template<
typename... _Args>
673 {
return _M_emplace(
cend(), __uk, std::forward<_Args>(__args)...); }
676 template<
typename... _Args>
678 _M_emplace(const_iterator,
std::true_type __uk, _Args&&... __args)
679 {
return _M_emplace(__uk, std::forward<_Args>(__args)...).first; }
681 template<
typename... _Args>
685 template<
typename _Arg,
typename _NodeGenerator>
689 template<
typename _Arg,
typename _NodeGenerator>
691 _M_insert(_Arg&& __arg,
const _NodeGenerator& __node_gen,
694 return _M_insert(
cend(), std::forward<_Arg>(__arg), __node_gen,
699 template<
typename _Arg,
typename _NodeGenerator>
701 _M_insert(const_iterator, _Arg&& __arg,
705 _M_insert(std::forward<_Arg>(__arg), __node_gen, __uk).
first;
709 template<
typename _Arg,
typename _NodeGenerator>
711 _M_insert(const_iterator, _Arg&&,
721 _M_erase(size_type __bkt, __node_base* __prev_n,
__node_type* __n);
725 template<
typename... _Args>
727 emplace(_Args&&... __args)
728 {
return _M_emplace(__unique_keys(), std::forward<_Args>(__args)...); }
730 template<
typename... _Args>
732 emplace_hint(const_iterator __hint, _Args&&... __args)
734 return _M_emplace(__hint, __unique_keys(),
735 std::forward<_Args>(__args)...);
742 erase(const_iterator);
747 {
return erase(const_iterator(__it)); }
750 erase(
const key_type& __k)
751 {
return _M_erase(__unique_keys(), __k); }
754 erase(const_iterator, const_iterator);
760 void rehash(size_type __n);
774 void _M_rehash(size_type __n,
const __rehash_state& __state);
779 template<
typename _Key,
typename _Value,
780 typename _Alloc,
typename _ExtractKey,
typename _Equal,
781 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
784 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
785 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
786 _M_bucket_begin(size_type __bkt)
const 789 __node_base* __n = _M_buckets[__bkt];
790 return __n ?
static_cast<__node_type*
>(__n->_M_nxt) :
nullptr;
793 template<
typename _Key,
typename _Value,
794 typename _Alloc,
typename _ExtractKey,
typename _Equal,
795 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
797 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
798 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
799 _Hashtable(size_type __bucket_hint,
800 const _H1& __h1,
const _H2& __h2,
const _Hash& __h,
801 const _Equal& __eq,
const _ExtractKey& __exk,
802 const allocator_type& __a)
803 :
_Hashtable(__h1, __h2, __h, __eq, __exk, __a)
805 auto __bkt = _M_rehash_policy._M_next_bkt(__bucket_hint);
806 if (__bkt > _M_bucket_count)
808 _M_buckets = _M_allocate_buckets(__bkt);
809 _M_bucket_count = __bkt;
813 template<
typename _Key,
typename _Value,
814 typename _Alloc,
typename _ExtractKey,
typename _Equal,
815 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
817 template<
typename _InputIterator>
818 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
819 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
820 _Hashtable(_InputIterator __f, _InputIterator __l,
821 size_type __bucket_hint,
822 const _H1& __h1,
const _H2& __h2,
const _Hash& __h,
823 const _Equal& __eq,
const _ExtractKey& __exk,
824 const allocator_type& __a)
825 :
_Hashtable(__h1, __h2, __h, __eq, __exk, __a)
827 auto __nb_elems = __detail::__distance_fw(__f, __l);
829 _M_rehash_policy._M_next_bkt(
830 std::max(_M_rehash_policy._M_bkt_for_elements(__nb_elems),
833 if (__bkt_count > _M_bucket_count)
835 _M_buckets = _M_allocate_buckets(__bkt_count);
836 _M_bucket_count = __bkt_count;
841 for (; __f != __l; ++__f)
847 _M_deallocate_buckets();
848 __throw_exception_again;
852 template<
typename _Key,
typename _Value,
853 typename _Alloc,
typename _ExtractKey,
typename _Equal,
854 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
857 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
858 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
865 if (__node_alloc_traits::_S_propagate_on_copy_assign())
867 auto& __this_alloc = this->_M_node_allocator();
868 auto& __that_alloc = __ht._M_node_allocator();
869 if (!__node_alloc_traits::_S_always_equal()
870 && __this_alloc != __that_alloc)
873 this->_M_deallocate_nodes(_M_begin());
874 _M_before_begin._M_nxt =
nullptr;
875 _M_deallocate_buckets();
876 _M_buckets =
nullptr;
877 std::__alloc_on_copy(__this_alloc, __that_alloc);
878 __hashtable_base::operator=(__ht);
879 _M_bucket_count = __ht._M_bucket_count;
880 _M_element_count = __ht._M_element_count;
881 _M_rehash_policy = __ht._M_rehash_policy;
886 {
return this->_M_allocate_node(__n->_M_v()); });
893 __throw_exception_again;
897 std::__alloc_on_copy(__this_alloc, __that_alloc);
901 __bucket_type* __former_buckets =
nullptr;
902 std::size_t __former_bucket_count = _M_bucket_count;
903 const __rehash_state& __former_state = _M_rehash_policy._M_state();
905 if (_M_bucket_count != __ht._M_bucket_count)
907 __former_buckets = _M_buckets;
908 _M_buckets = _M_allocate_buckets(__ht._M_bucket_count);
909 _M_bucket_count = __ht._M_bucket_count;
912 __builtin_memset(_M_buckets, 0,
913 _M_bucket_count *
sizeof(__bucket_type));
917 __hashtable_base::operator=(__ht);
918 _M_element_count = __ht._M_element_count;
919 _M_rehash_policy = __ht._M_rehash_policy;
920 __reuse_or_alloc_node_type __roan(_M_begin(), *
this);
921 _M_before_begin._M_nxt =
nullptr;
924 {
return __roan(__n->_M_v()); });
925 if (__former_buckets)
926 _M_deallocate_buckets(__former_buckets, __former_bucket_count);
930 if (__former_buckets)
933 _M_deallocate_buckets();
934 _M_rehash_policy._M_reset(__former_state);
935 _M_buckets = __former_buckets;
936 _M_bucket_count = __former_bucket_count;
938 __builtin_memset(_M_buckets, 0,
939 _M_bucket_count *
sizeof(__bucket_type));
940 __throw_exception_again;
945 template<
typename _Key,
typename _Value,
946 typename _Alloc,
typename _ExtractKey,
typename _Equal,
947 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
949 template<
typename _NodeGenerator>
951 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
952 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
953 _M_assign(
const _Hashtable& __ht,
const _NodeGenerator& __node_gen)
955 __bucket_type* __buckets =
nullptr;
957 _M_buckets = __buckets = _M_allocate_buckets(_M_bucket_count);
961 if (!__ht._M_before_begin._M_nxt)
968 this->_M_copy_code(__this_n, __ht_n);
969 _M_before_begin._M_nxt = __this_n;
970 _M_buckets[_M_bucket_index(__this_n)] = &_M_before_begin;
973 __node_base* __prev_n = __this_n;
974 for (__ht_n = __ht_n->_M_next(); __ht_n; __ht_n = __ht_n->_M_next())
976 __this_n = __node_gen(__ht_n);
977 __prev_n->_M_nxt = __this_n;
978 this->_M_copy_code(__this_n, __ht_n);
979 size_type __bkt = _M_bucket_index(__this_n);
980 if (!_M_buckets[__bkt])
981 _M_buckets[__bkt] = __prev_n;
989 _M_deallocate_buckets();
990 __throw_exception_again;
994 template<
typename _Key,
typename _Value,
995 typename _Alloc,
typename _ExtractKey,
typename _Equal,
996 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
999 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1000 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1003 _M_rehash_policy._M_reset();
1004 _M_bucket_count = 1;
1005 _M_single_bucket =
nullptr;
1006 _M_buckets = &_M_single_bucket;
1007 _M_before_begin._M_nxt =
nullptr;
1008 _M_element_count = 0;
1011 template<
typename _Key,
typename _Value,
1012 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1013 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1016 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1017 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1020 this->_M_deallocate_nodes(_M_begin());
1021 _M_deallocate_buckets();
1022 __hashtable_base::operator=(std::move(__ht));
1023 _M_rehash_policy = __ht._M_rehash_policy;
1024 if (!__ht._M_uses_single_bucket())
1025 _M_buckets = __ht._M_buckets;
1028 _M_buckets = &_M_single_bucket;
1029 _M_single_bucket = __ht._M_single_bucket;
1031 _M_bucket_count = __ht._M_bucket_count;
1032 _M_before_begin._M_nxt = __ht._M_before_begin._M_nxt;
1033 _M_element_count = __ht._M_element_count;
1034 std::__alloc_on_move(this->_M_node_allocator(), __ht._M_node_allocator());
1039 _M_buckets[_M_bucket_index(_M_begin())] = &_M_before_begin;
1043 template<
typename _Key,
typename _Value,
1044 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1045 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1048 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1049 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1052 if (__ht._M_node_allocator() == this->_M_node_allocator())
1057 __bucket_type* __former_buckets =
nullptr;
1058 size_type __former_bucket_count = _M_bucket_count;
1059 const __rehash_state& __former_state = _M_rehash_policy._M_state();
1061 if (_M_bucket_count != __ht._M_bucket_count)
1063 __former_buckets = _M_buckets;
1064 _M_buckets = _M_allocate_buckets(__ht._M_bucket_count);
1065 _M_bucket_count = __ht._M_bucket_count;
1068 __builtin_memset(_M_buckets, 0,
1069 _M_bucket_count *
sizeof(__bucket_type));
1073 __hashtable_base::operator=(std::move(__ht));
1074 _M_element_count = __ht._M_element_count;
1075 _M_rehash_policy = __ht._M_rehash_policy;
1076 __reuse_or_alloc_node_type __roan(_M_begin(), *
this);
1077 _M_before_begin._M_nxt =
nullptr;
1085 if (__former_buckets)
1087 _M_deallocate_buckets();
1088 _M_rehash_policy._M_reset(__former_state);
1089 _M_buckets = __former_buckets;
1090 _M_bucket_count = __former_bucket_count;
1092 __builtin_memset(_M_buckets, 0,
1093 _M_bucket_count *
sizeof(__bucket_type));
1094 __throw_exception_again;
1099 template<
typename _Key,
typename _Value,
1100 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1101 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1103 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1104 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1110 __node_alloc_traits::_S_select_on_copy(__ht._M_node_allocator())),
1111 _M_buckets(
nullptr),
1112 _M_bucket_count(__ht._M_bucket_count),
1113 _M_element_count(__ht._M_element_count),
1114 _M_rehash_policy(__ht._M_rehash_policy)
1118 {
return this->_M_allocate_node(__n->_M_v()); });
1121 template<
typename _Key,
typename _Value,
1122 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1123 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1125 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1126 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1132 _M_buckets(__ht._M_buckets),
1133 _M_bucket_count(__ht._M_bucket_count),
1134 _M_before_begin(__ht._M_before_begin._M_nxt),
1135 _M_element_count(__ht._M_element_count),
1136 _M_rehash_policy(__ht._M_rehash_policy)
1139 if (__ht._M_uses_single_bucket())
1141 _M_buckets = &_M_single_bucket;
1142 _M_single_bucket = __ht._M_single_bucket;
1148 _M_buckets[_M_bucket_index(_M_begin())] = &_M_before_begin;
1153 template<
typename _Key,
typename _Value,
1154 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1155 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1157 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1158 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1159 _Hashtable(
const _Hashtable& __ht,
const allocator_type& __a)
1165 _M_bucket_count(__ht._M_bucket_count),
1166 _M_element_count(__ht._M_element_count),
1167 _M_rehash_policy(__ht._M_rehash_policy)
1171 {
return this->_M_allocate_node(__n->_M_v()); });
1174 template<
typename _Key,
typename _Value,
1175 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1176 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1178 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1179 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1180 _Hashtable(
_Hashtable&& __ht,
const allocator_type& __a)
1185 _M_buckets(
nullptr),
1186 _M_bucket_count(__ht._M_bucket_count),
1187 _M_element_count(__ht._M_element_count),
1188 _M_rehash_policy(__ht._M_rehash_policy)
1190 if (__ht._M_node_allocator() == this->_M_node_allocator())
1192 if (__ht._M_uses_single_bucket())
1194 _M_buckets = &_M_single_bucket;
1195 _M_single_bucket = __ht._M_single_bucket;
1198 _M_buckets = __ht._M_buckets;
1200 _M_before_begin._M_nxt = __ht._M_before_begin._M_nxt;
1204 _M_buckets[_M_bucket_index(_M_begin())] = &_M_before_begin;
1212 return this->_M_allocate_node(
1219 template<
typename _Key,
typename _Value,
1220 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1221 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1223 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1224 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1225 ~_Hashtable() noexcept
1228 _M_deallocate_buckets();
1231 template<
typename _Key,
typename _Value,
1232 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1233 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1236 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1237 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1239 noexcept(__is_nothrow_swappable<_H1>::value
1240 && __is_nothrow_swappable<_Equal>::value)
1247 std::__alloc_on_swap(this->_M_node_allocator(), __x._M_node_allocator());
1248 std::swap(_M_rehash_policy, __x._M_rehash_policy);
1251 if (this->_M_uses_single_bucket())
1253 if (!__x._M_uses_single_bucket())
1255 _M_buckets = __x._M_buckets;
1256 __x._M_buckets = &__x._M_single_bucket;
1259 else if (__x._M_uses_single_bucket())
1261 __x._M_buckets = _M_buckets;
1262 _M_buckets = &_M_single_bucket;
1265 std::swap(_M_buckets, __x._M_buckets);
1267 std::swap(_M_bucket_count, __x._M_bucket_count);
1268 std::swap(_M_before_begin._M_nxt, __x._M_before_begin._M_nxt);
1269 std::swap(_M_element_count, __x._M_element_count);
1270 std::swap(_M_single_bucket, __x._M_single_bucket);
1275 _M_buckets[_M_bucket_index(_M_begin())] = &_M_before_begin;
1278 __x._M_buckets[__x._M_bucket_index(__x._M_begin())]
1279 = &__x._M_before_begin;
1282 template<
typename _Key,
typename _Value,
1283 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1284 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1287 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1288 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1289 find(
const key_type& __k)
1292 __hash_code __code = this->_M_hash_code(__k);
1293 std::size_t __n = _M_bucket_index(__k, __code);
1294 __node_type* __p = _M_find_node(__n, __k, __code);
1295 return __p ? iterator(__p) :
end();
1298 template<
typename _Key,
typename _Value,
1299 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1300 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1303 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1304 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1305 find(
const key_type& __k)
const 1308 __hash_code __code = this->_M_hash_code(__k);
1309 std::size_t __n = _M_bucket_index(__k, __code);
1310 __node_type* __p = _M_find_node(__n, __k, __code);
1311 return __p ? const_iterator(__p) :
end();
1314 template<
typename _Key,
typename _Value,
1315 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1316 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1319 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1320 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1321 count(
const key_type& __k)
const 1324 __hash_code __code = this->_M_hash_code(__k);
1325 std::size_t __n = _M_bucket_index(__k, __code);
1330 std::size_t __result = 0;
1331 for (;; __p = __p->_M_next())
1333 if (this->_M_equals(__k, __code, __p))
1340 if (!__p->_M_nxt || _M_bucket_index(__p->_M_next()) != __n)
1346 template<
typename _Key,
typename _Value,
1347 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1348 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1351 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1352 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1353 equal_range(
const key_type& __k)
1356 __hash_code __code = this->_M_hash_code(__k);
1357 std::size_t __n = _M_bucket_index(__k, __code);
1358 __node_type* __p = _M_find_node(__n, __k, __code);
1363 while (__p1 && _M_bucket_index(__p1) == __n
1364 && this->_M_equals(__k, __code, __p1))
1365 __p1 = __p1->_M_next();
1373 template<
typename _Key,
typename _Value,
1374 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1375 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1378 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1379 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1380 equal_range(
const key_type& __k)
const 1383 __hash_code __code = this->_M_hash_code(__k);
1384 std::size_t __n = _M_bucket_index(__k, __code);
1385 __node_type* __p = _M_find_node(__n, __k, __code);
1390 while (__p1 && _M_bucket_index(__p1) == __n
1391 && this->_M_equals(__k, __code, __p1))
1392 __p1 = __p1->_M_next();
1394 return std::make_pair(const_iterator(__p), const_iterator(__p1));
1402 template<
typename _Key,
typename _Value,
1403 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1404 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1407 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1408 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1409 _M_find_before_node(size_type __n,
const key_type& __k,
1410 __hash_code __code)
const 1413 __node_base* __prev_p = _M_buckets[__n];
1417 for (
__node_type* __p = static_cast<__node_type*>(__prev_p->_M_nxt);;
1418 __p = __p->_M_next())
1420 if (this->_M_equals(__k, __code, __p))
1423 if (!__p->_M_nxt || _M_bucket_index(__p->_M_next()) != __n)
1430 template<
typename _Key,
typename _Value,
1431 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1432 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1435 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1436 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1437 _M_insert_bucket_begin(size_type __bkt,
__node_type* __node)
1439 if (_M_buckets[__bkt])
1443 __node->_M_nxt = _M_buckets[__bkt]->_M_nxt;
1444 _M_buckets[__bkt]->_M_nxt = __node;
1451 __node->_M_nxt = _M_before_begin._M_nxt;
1452 _M_before_begin._M_nxt = __node;
1456 _M_buckets[_M_bucket_index(__node->_M_next())] = __node;
1457 _M_buckets[__bkt] = &_M_before_begin;
1461 template<
typename _Key,
typename _Value,
1462 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1463 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1466 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1467 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1468 _M_remove_bucket_begin(size_type __bkt,
__node_type* __next,
1469 size_type __next_bkt)
1471 if (!__next || __next_bkt != __bkt)
1476 _M_buckets[__next_bkt] = _M_buckets[__bkt];
1479 if (&_M_before_begin == _M_buckets[__bkt])
1480 _M_before_begin._M_nxt = __next;
1481 _M_buckets[__bkt] =
nullptr;
1485 template<
typename _Key,
typename _Value,
1486 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1487 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1490 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1491 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1492 _M_get_previous_node(size_type __bkt, __node_base* __n)
1495 __node_base* __prev_n = _M_buckets[__bkt];
1496 while (__prev_n->_M_nxt != __n)
1497 __prev_n = __prev_n->_M_nxt;
1501 template<
typename _Key,
typename _Value,
1502 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1503 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1505 template<
typename... _Args>
1507 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1508 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1513 __node_type* __node = this->_M_allocate_node(std::forward<_Args>(__args)...);
1514 const key_type& __k = this->_M_extract()(__node->_M_v());
1518 __code = this->_M_hash_code(__k);
1522 this->_M_deallocate_node(__node);
1523 __throw_exception_again;
1526 size_type __bkt = _M_bucket_index(__k, __code);
1527 if (
__node_type* __p = _M_find_node(__bkt, __k, __code))
1530 this->_M_deallocate_node(__node);
1535 return std::make_pair(_M_insert_unique_node(__bkt, __code, __node),
1539 template<
typename _Key,
typename _Value,
1540 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1541 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1543 template<
typename... _Args>
1545 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1546 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1552 this->_M_allocate_node(std::forward<_Args>(__args)...);
1557 __code = this->_M_hash_code(this->_M_extract()(__node->_M_v()));
1561 this->_M_deallocate_node(__node);
1562 __throw_exception_again;
1565 return _M_insert_multi_node(__hint._M_cur, __code, __node);
1568 template<
typename _Key,
typename _Value,
1569 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1570 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1573 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1574 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1575 _M_insert_unique_node(size_type __bkt, __hash_code __code,
1579 const __rehash_state& __saved_state = _M_rehash_policy._M_state();
1581 = _M_rehash_policy._M_need_rehash(_M_bucket_count, _M_element_count, 1);
1585 if (__do_rehash.
first)
1587 _M_rehash(__do_rehash.
second, __saved_state);
1588 __bkt = _M_bucket_index(this->_M_extract()(__node->_M_v()), __code);
1591 this->_M_store_code(__node, __code);
1594 _M_insert_bucket_begin(__bkt, __node);
1596 return iterator(__node);
1600 this->_M_deallocate_node(__node);
1601 __throw_exception_again;
1607 template<
typename _Key,
typename _Value,
1608 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1609 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1612 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1613 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1614 _M_insert_multi_node(
__node_type* __hint, __hash_code __code,
1618 const __rehash_state& __saved_state = _M_rehash_policy._M_state();
1620 = _M_rehash_policy._M_need_rehash(_M_bucket_count, _M_element_count, 1);
1624 if (__do_rehash.
first)
1625 _M_rehash(__do_rehash.
second, __saved_state);
1627 this->_M_store_code(__node, __code);
1628 const key_type& __k = this->_M_extract()(__node->_M_v());
1629 size_type __bkt = _M_bucket_index(__k, __code);
1634 = __builtin_expect(__hint !=
nullptr,
false)
1635 && this->_M_equals(__k, __code, __hint)
1637 : _M_find_before_node(__bkt, __k, __code);
1641 __node->_M_nxt = __prev->_M_nxt;
1642 __prev->_M_nxt = __node;
1643 if (__builtin_expect(__prev == __hint,
false))
1647 && !this->_M_equals(__k, __code, __node->_M_next()))
1649 size_type __next_bkt = _M_bucket_index(__node->_M_next());
1650 if (__next_bkt != __bkt)
1651 _M_buckets[__next_bkt] = __node;
1659 _M_insert_bucket_begin(__bkt, __node);
1661 return iterator(__node);
1665 this->_M_deallocate_node(__node);
1666 __throw_exception_again;
1671 template<
typename _Key,
typename _Value,
1672 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1673 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1675 template<
typename _Arg,
typename _NodeGenerator>
1677 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1678 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1679 _M_insert(_Arg&& __v,
const _NodeGenerator& __node_gen,
std::true_type)
1682 const key_type& __k = this->_M_extract()(__v);
1683 __hash_code __code = this->_M_hash_code(__k);
1684 size_type __bkt = _M_bucket_index(__k, __code);
1686 __node_type* __n = _M_find_node(__bkt, __k, __code);
1690 __n = __node_gen(std::forward<_Arg>(__v));
1691 return std::make_pair(_M_insert_unique_node(__bkt, __code, __n),
true);
1695 template<
typename _Key,
typename _Value,
1696 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1697 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1699 template<
typename _Arg,
typename _NodeGenerator>
1701 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1702 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1703 _M_insert(const_iterator __hint, _Arg&& __v,
1709 __hash_code __code = this->_M_hash_code(this->_M_extract()(__v));
1712 __node_type* __node = __node_gen(std::forward<_Arg>(__v));
1714 return _M_insert_multi_node(__hint._M_cur, __code, __node);
1717 template<
typename _Key,
typename _Value,
1718 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1719 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1722 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1723 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1724 erase(const_iterator __it)
1728 std::size_t __bkt = _M_bucket_index(__n);
1733 __node_base* __prev_n = _M_get_previous_node(__bkt, __n);
1734 return _M_erase(__bkt, __prev_n, __n);
1737 template<
typename _Key,
typename _Value,
1738 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1739 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1742 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1743 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1744 _M_erase(size_type __bkt, __node_base* __prev_n,
__node_type* __n)
1747 if (__prev_n == _M_buckets[__bkt])
1748 _M_remove_bucket_begin(__bkt, __n->_M_next(),
1749 __n->_M_nxt ? _M_bucket_index(__n->_M_next()) : 0);
1750 else if (__n->_M_nxt)
1752 size_type __next_bkt = _M_bucket_index(__n->_M_next());
1753 if (__next_bkt != __bkt)
1754 _M_buckets[__next_bkt] = __prev_n;
1757 __prev_n->_M_nxt = __n->_M_nxt;
1758 iterator __result(__n->_M_next());
1759 this->_M_deallocate_node(__n);
1765 template<
typename _Key,
typename _Value,
1766 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1767 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1770 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1771 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1775 __hash_code __code = this->_M_hash_code(__k);
1776 std::size_t __bkt = _M_bucket_index(__k, __code);
1779 __node_base* __prev_n = _M_find_before_node(__bkt, __k, __code);
1785 _M_erase(__bkt, __prev_n, __n);
1789 template<
typename _Key,
typename _Value,
1790 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1791 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1794 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1795 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1799 __hash_code __code = this->_M_hash_code(__k);
1800 std::size_t __bkt = _M_bucket_index(__k, __code);
1803 __node_base* __prev_n = _M_find_before_node(__bkt, __k, __code);
1815 std::size_t __n_last_bkt = __bkt;
1818 __n_last = __n_last->_M_next();
1821 __n_last_bkt = _M_bucket_index(__n_last);
1823 while (__n_last_bkt == __bkt && this->_M_equals(__k, __code, __n_last));
1826 size_type __result = 0;
1830 this->_M_deallocate_node(__n);
1835 while (__n != __n_last);
1837 if (__prev_n == _M_buckets[__bkt])
1838 _M_remove_bucket_begin(__bkt, __n_last, __n_last_bkt);
1839 else if (__n_last && __n_last_bkt != __bkt)
1840 _M_buckets[__n_last_bkt] = __prev_n;
1841 __prev_n->_M_nxt = __n_last;
1845 template<
typename _Key,
typename _Value,
1846 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1847 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1850 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1851 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1852 erase(const_iterator __first, const_iterator __last)
1857 if (__n == __last_n)
1858 return iterator(__n);
1860 std::size_t __bkt = _M_bucket_index(__n);
1862 __node_base* __prev_n = _M_get_previous_node(__bkt, __n);
1863 bool __is_bucket_begin = __n == _M_bucket_begin(__bkt);
1864 std::size_t __n_bkt = __bkt;
1870 __n = __n->_M_next();
1871 this->_M_deallocate_node(__tmp);
1875 __n_bkt = _M_bucket_index(__n);
1877 while (__n != __last_n && __n_bkt == __bkt);
1878 if (__is_bucket_begin)
1879 _M_remove_bucket_begin(__bkt, __n, __n_bkt);
1880 if (__n == __last_n)
1882 __is_bucket_begin =
true;
1886 if (__n && (__n_bkt != __bkt || __is_bucket_begin))
1887 _M_buckets[__n_bkt] = __prev_n;
1888 __prev_n->_M_nxt = __n;
1889 return iterator(__n);
1892 template<
typename _Key,
typename _Value,
1893 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1894 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1897 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1898 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1901 this->_M_deallocate_nodes(_M_begin());
1902 __builtin_memset(_M_buckets, 0, _M_bucket_count *
sizeof(__bucket_type));
1903 _M_element_count = 0;
1904 _M_before_begin._M_nxt =
nullptr;
1907 template<
typename _Key,
typename _Value,
1908 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1909 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1912 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1913 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1914 rehash(size_type __n)
1916 const __rehash_state& __saved_state = _M_rehash_policy._M_state();
1917 std::size_t __buckets
1918 =
std::max(_M_rehash_policy._M_bkt_for_elements(_M_element_count + 1),
1920 __buckets = _M_rehash_policy._M_next_bkt(__buckets);
1922 if (__buckets != _M_bucket_count)
1923 _M_rehash(__buckets, __saved_state);
1926 _M_rehash_policy._M_reset(__saved_state);
1929 template<
typename _Key,
typename _Value,
1930 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1931 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1934 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1935 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1936 _M_rehash(size_type __n,
const __rehash_state& __state)
1940 _M_rehash_aux(__n, __unique_keys());
1946 _M_rehash_policy._M_reset(__state);
1947 __throw_exception_again;
1952 template<
typename _Key,
typename _Value,
1953 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1954 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1957 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1958 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
1961 __bucket_type* __new_buckets = _M_allocate_buckets(__n);
1963 _M_before_begin._M_nxt =
nullptr;
1964 std::size_t __bbegin_bkt = 0;
1968 std::size_t __bkt = __hash_code_base::_M_bucket_index(__p, __n);
1969 if (!__new_buckets[__bkt])
1971 __p->_M_nxt = _M_before_begin._M_nxt;
1972 _M_before_begin._M_nxt = __p;
1973 __new_buckets[__bkt] = &_M_before_begin;
1975 __new_buckets[__bbegin_bkt] = __p;
1976 __bbegin_bkt = __bkt;
1980 __p->_M_nxt = __new_buckets[__bkt]->_M_nxt;
1981 __new_buckets[__bkt]->_M_nxt = __p;
1986 _M_deallocate_buckets();
1987 _M_bucket_count = __n;
1988 _M_buckets = __new_buckets;
1993 template<
typename _Key,
typename _Value,
1994 typename _Alloc,
typename _ExtractKey,
typename _Equal,
1995 typename _H1,
typename _H2,
typename _Hash,
typename _RehashPolicy,
1998 _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
1999 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
2002 __bucket_type* __new_buckets = _M_allocate_buckets(__n);
2005 _M_before_begin._M_nxt =
nullptr;
2006 std::size_t __bbegin_bkt = 0;
2007 std::size_t __prev_bkt = 0;
2009 bool __check_bucket =
false;
2014 std::size_t __bkt = __hash_code_base::_M_bucket_index(__p, __n);
2016 if (__prev_p && __prev_bkt == __bkt)
2021 __p->_M_nxt = __prev_p->_M_nxt;
2022 __prev_p->_M_nxt = __p;
2029 __check_bucket =
true;
2037 if (__prev_p->_M_nxt)
2039 std::size_t __next_bkt
2040 = __hash_code_base::_M_bucket_index(__prev_p->_M_next(),
2042 if (__next_bkt != __prev_bkt)
2043 __new_buckets[__next_bkt] = __prev_p;
2045 __check_bucket =
false;
2048 if (!__new_buckets[__bkt])
2050 __p->_M_nxt = _M_before_begin._M_nxt;
2051 _M_before_begin._M_nxt = __p;
2052 __new_buckets[__bkt] = &_M_before_begin;
2054 __new_buckets[__bbegin_bkt] = __p;
2055 __bbegin_bkt = __bkt;
2059 __p->_M_nxt = __new_buckets[__bkt]->_M_nxt;
2060 __new_buckets[__bkt]->_M_nxt = __p;
2068 if (__check_bucket && __prev_p->_M_nxt)
2070 std::size_t __next_bkt
2071 = __hash_code_base::_M_bucket_index(__prev_p->_M_next(), __n);
2072 if (__next_bkt != __prev_bkt)
2073 __new_buckets[__next_bkt] = __prev_p;
2076 _M_deallocate_buckets();
2077 _M_bucket_count = __n;
2078 _M_buckets = __new_buckets;
2081 _GLIBCXX_END_NAMESPACE_VERSION
2084 #endif // _HASHTABLE_H _T2 second
first is a copy of the first object
Uniform interface to C++98 and C++11 allocators.
constexpr auto cend(const _Container &__cont) noexcept(noexcept(std::end(__cont))) -> decltype(std::end(__cont))
Return an iterator pointing to one past the last element of the const container.
_GLIBCXX14_CONSTEXPR const _Tp & max(const _Tp &, const _Tp &)
This does what you think it does.
constexpr const _Tp * begin(initializer_list< _Tp > __ils) noexcept
Return an iterator pointing to the first element of the initializer_list.
_T1 first
second_type is the second bound type
constexpr const _Tp * end(initializer_list< _Tp > __ils) noexcept
Return an iterator pointing to one past the last element of the initializer_list. ...
constexpr auto cbegin(const _Container &__cont) noexcept(noexcept(std::begin(__cont))) -> decltype(std::begin(__cont))
Return an iterator pointing to the first element of the const container.
Node iterators, used to iterate through all the hashtable.
Struct holding two objects of arbitrary type.
constexpr pair< typename __decay_and_strip< _T1 >::__type, typename __decay_and_strip< _T2 >::__type > make_pair(_T1 &&__x, _T2 &&__y)
A convenience wrapper for creating a pair from two objects.
Uniform interface to all allocator types.
Node const_iterators, used to iterate through all the hashtable.
constexpr conditional< __move_if_noexcept_cond< _Tp >::value, const _Tp &, _Tp && >::type move_if_noexcept(_Tp &__x) noexcept
Conditionally convert a value to an rvalue.
ISO C++ entities toplevel namespace is std.
integral_constant< bool, true > true_type
The type used as a compile-time boolean with true value.
iterator_traits< _InputIterator >::difference_type distance(_InputIterator __first, _InputIterator __last)
A generalization of pointer arithmetic.