62#pragma GCC system_header
71#if __cplusplus >= 201103L
74#ifdef __glibcxx_node_extract
78#if __cplusplus < 201103L
79# undef _GLIBCXX_USE_ALLOC_PTR_FOR_RB_TREE
80# define _GLIBCXX_USE_ALLOC_PTR_FOR_RB_TREE 0
81#elif ! defined _GLIBCXX_USE_ALLOC_PTR_FOR_RB_TREE
82# define _GLIBCXX_USE_ALLOC_PTR_FOR_RB_TREE 1
85namespace std _GLIBCXX_VISIBILITY(default)
87_GLIBCXX_BEGIN_NAMESPACE_VERSION
105 enum _Rb_tree_color { _S_red =
false, _S_black =
true };
107 struct _Rb_tree_node_base
109 typedef _Rb_tree_node_base* _Base_ptr;
111 _Rb_tree_color _M_color;
117 _S_minimum(_Base_ptr __x) _GLIBCXX_NOEXCEPT
119 while (__x->_M_left != 0) __x = __x->_M_left;
124 _S_maximum(_Base_ptr __x) _GLIBCXX_NOEXCEPT
126 while (__x->_M_right != 0) __x = __x->_M_right;
134 _M_base_ptr() const _GLIBCXX_NOEXCEPT
135 {
return const_cast<_Rb_tree_node_base*
>(
this); }
139 template<
typename _Key_compare>
140 struct _Rb_tree_key_compare
142 _Key_compare _M_key_compare;
144 _Rb_tree_key_compare()
145 _GLIBCXX_NOEXCEPT_IF(
146 is_nothrow_default_constructible<_Key_compare>::value)
150 _Rb_tree_key_compare(
const _Key_compare& __comp)
151 : _M_key_compare(__comp)
154#if __cplusplus >= 201103L
156 _Rb_tree_key_compare(
const _Rb_tree_key_compare&) =
default;
158 _Rb_tree_key_compare(_Rb_tree_key_compare&& __x)
159 noexcept(is_nothrow_copy_constructible<_Key_compare>::value)
160 : _M_key_compare(__x._M_key_compare)
166 struct _Rb_tree_header
168 _Rb_tree_node_base _M_header;
169 size_t _M_node_count;
171 _Rb_tree_header() _GLIBCXX_NOEXCEPT
173 _M_header._M_color = _S_red;
177#if __cplusplus >= 201103L
178 _Rb_tree_header(_Rb_tree_header&& __x)
noexcept
180 if (__x._M_header._M_parent !=
nullptr)
184 _M_header._M_color = _S_red;
191 _M_move_data(_Rb_tree_header& __from)
193 _M_header._M_color = __from._M_header._M_color;
194 _M_header._M_parent = __from._M_header._M_parent;
195 _M_header._M_left = __from._M_header._M_left;
196 _M_header._M_right = __from._M_header._M_right;
197 _M_header._M_parent->_M_parent = &_M_header;
198 _M_node_count = __from._M_node_count;
206 _M_header._M_parent = 0;
207 _M_header._M_left = &_M_header;
208 _M_header._M_right = &_M_header;
213 template<
typename _Val>
214 struct _Rb_tree_node :
public _Rb_tree_node_base
216#if __cplusplus < 201103L
227 __gnu_cxx::__aligned_membuf<_Val> _M_storage;
231 {
return _M_storage._M_ptr(); }
235 {
return _M_storage._M_ptr(); }
239 _M_node_ptr() _GLIBCXX_NOEXCEPT
243#if _GLIBCXX_USE_ALLOC_PTR_FOR_RB_TREE
246 template<
typename _Vo
idPtr>
249 using _Base_ptr = __ptr_rebind<_VoidPtr, _Node_base>;
251 _Rb_tree_color _M_color;
257 _S_minimum(_Base_ptr __x) _GLIBCXX_NOEXCEPT
259 while (__x->_M_left) __x = __x->_M_left;
264 _S_maximum(_Base_ptr __x) _GLIBCXX_NOEXCEPT
266 while (__x->_M_right) __x = __x->_M_right;
274 _M_base_ptr() const noexcept
276 return pointer_traits<_Base_ptr>::pointer_to
277 (*
const_cast<_Node_base*
>(
this));
282 template<
typename _NodeBase>
286 using _Base_ptr =
typename _NodeBase::_Base_ptr;
290 size_t _M_node_count;
294 _M_header._M_color = _S_red;
298 _Header(_Header&& __x)
noexcept
300 if (__x._M_header._M_parent)
304 _M_header._M_color = _S_red;
310 _M_move_data(_Header& __from)
312 _M_header._M_color = __from._M_header._M_color;
313 _M_header._M_parent = __from._M_header._M_parent;
314 _M_header._M_left = __from._M_header._M_left;
315 _M_header._M_right = __from._M_header._M_right;
316 _M_header._M_parent->_M_parent = _M_header._M_base_ptr();
317 _M_node_count = __from._M_node_count;
325 _M_header._M_parent =
nullptr;
326 _M_header._M_left = _M_header._M_right = _M_header._M_base_ptr();
331 template<
typename _ValPtr>
332 struct _Node :
public __rb_tree::_Node_base<__ptr_rebind<_ValPtr, void>>
334 using value_type =
typename pointer_traits<_ValPtr>::element_type;
339 _Node(_Node&&) =
delete;
341 union _Uninit_storage
343 _Uninit_storage() noexcept { }
344 ~_Uninit_storage() { }
348 _Uninit_storage _M_u;
359 _M_node_ptr() noexcept
360 {
return pointer_traits<_Node_ptr>::pointer_to(*
this); }
365 _GLIBCXX_PURE _Rb_tree_node_base*
366 _Rb_tree_increment(_Rb_tree_node_base* __x)
throw ();
368 _GLIBCXX_PURE _Rb_tree_node_base*
369 _Rb_tree_decrement(_Rb_tree_node_base* __x)
throw ();
371 template<
typename _Tp>
372 struct _Rb_tree_iterator
374 typedef _Tp value_type;
375 typedef _Tp& reference;
376 typedef _Tp* pointer;
378 typedef bidirectional_iterator_tag iterator_category;
379 typedef ptrdiff_t difference_type;
381 typedef _Rb_tree_node_base::_Base_ptr _Base_ptr;
382 typedef _Rb_tree_node<_Tp>* _Node_ptr;
384 _Rb_tree_iterator() _GLIBCXX_NOEXCEPT
388 _Rb_tree_iterator(_Base_ptr __x) _GLIBCXX_NOEXCEPT
392 operator*() const _GLIBCXX_NOEXCEPT
393 {
return *
static_cast<_Node_ptr
>(_M_node)->_M_valptr(); }
396 operator->() const _GLIBCXX_NOEXCEPT
397 {
return static_cast<_Node_ptr
>(_M_node)->_M_valptr(); }
400 operator++() _GLIBCXX_NOEXCEPT
402 _M_node = _Rb_tree_increment(_M_node);
407 operator++(
int) _GLIBCXX_NOEXCEPT
409 _Rb_tree_iterator __tmp = *
this;
410 _M_node = _Rb_tree_increment(_M_node);
415 operator--() _GLIBCXX_NOEXCEPT
417 _M_node = _Rb_tree_decrement(_M_node);
422 operator--(
int) _GLIBCXX_NOEXCEPT
424 _Rb_tree_iterator __tmp = *
this;
425 _M_node = _Rb_tree_decrement(_M_node);
430 operator==(
const _Rb_tree_iterator& __x,
431 const _Rb_tree_iterator& __y) _GLIBCXX_NOEXCEPT
432 {
return __x._M_node == __y._M_node; }
434#if ! __cpp_lib_three_way_comparison
436 operator!=(
const _Rb_tree_iterator& __x,
437 const _Rb_tree_iterator& __y) _GLIBCXX_NOEXCEPT
438 {
return __x._M_node != __y._M_node; }
444 template<
typename _Tp>
445 struct _Rb_tree_const_iterator
447 typedef _Tp value_type;
448 typedef const _Tp& reference;
449 typedef const _Tp* pointer;
451 typedef _Rb_tree_iterator<_Tp> iterator;
453 typedef bidirectional_iterator_tag iterator_category;
454 typedef ptrdiff_t difference_type;
456 typedef _Rb_tree_node_base::_Base_ptr _Base_ptr;
457 typedef const _Rb_tree_node<_Tp>* _Node_ptr;
459 _Rb_tree_const_iterator() _GLIBCXX_NOEXCEPT
463 _Rb_tree_const_iterator(_Base_ptr __x) _GLIBCXX_NOEXCEPT
466 _Rb_tree_const_iterator(
const iterator& __it) _GLIBCXX_NOEXCEPT
467 : _M_node(__it._M_node) { }
470 operator*() const _GLIBCXX_NOEXCEPT
471 {
return *
static_cast<_Node_ptr
>(_M_node)->_M_valptr(); }
474 operator->() const _GLIBCXX_NOEXCEPT
475 {
return static_cast<_Node_ptr
>(_M_node)->_M_valptr(); }
477 _Rb_tree_const_iterator&
478 operator++() _GLIBCXX_NOEXCEPT
480 _M_node = _Rb_tree_increment(_M_node);
484 _Rb_tree_const_iterator
485 operator++(
int) _GLIBCXX_NOEXCEPT
487 _Rb_tree_const_iterator __tmp = *
this;
488 _M_node = _Rb_tree_increment(_M_node);
492 _Rb_tree_const_iterator&
493 operator--() _GLIBCXX_NOEXCEPT
495 _M_node = _Rb_tree_decrement(_M_node);
499 _Rb_tree_const_iterator
500 operator--(
int) _GLIBCXX_NOEXCEPT
502 _Rb_tree_const_iterator __tmp = *
this;
503 _M_node = _Rb_tree_decrement(_M_node);
508 operator==(
const _Rb_tree_const_iterator& __x,
509 const _Rb_tree_const_iterator& __y) _GLIBCXX_NOEXCEPT
510 {
return __x._M_node == __y._M_node; }
512#if ! __cpp_lib_three_way_comparison
514 operator!=(
const _Rb_tree_const_iterator& __x,
515 const _Rb_tree_const_iterator& __y) _GLIBCXX_NOEXCEPT
516 {
return __x._M_node != __y._M_node; }
522 __attribute__((__nonnull__))
524 _Rb_tree_insert_and_rebalance(
const bool __insert_left,
525 _Rb_tree_node_base* __x,
526 _Rb_tree_node_base* __p,
527 _Rb_tree_node_base& __header)
throw ();
529 __attribute__((__nonnull__,__returns_nonnull__))
531 _Rb_tree_rebalance_for_erase(_Rb_tree_node_base*
const __z,
532 _Rb_tree_node_base& __header)
throw ();
536#if _GLIBCXX_USE_ALLOC_PTR_FOR_RB_TREE
537 template<
bool _Const,
typename _ValPtr>
540 template<
typename _Tp>
541 using __maybe_const = __conditional_t<_Const, const _Tp, _Tp>;
543 using __ptr_traits = pointer_traits<_ValPtr>;
544 using value_type =
typename __ptr_traits::element_type;
545 using reference = __maybe_const<value_type>&;
546 using pointer = __maybe_const<value_type>*;
548 using iterator_category = bidirectional_iterator_tag;
549 using difference_type = ptrdiff_t;
551 using _Node = __rb_tree::_Node<_ValPtr>;
552 using _Node_base = __rb_tree::_Node_base<__ptr_rebind<_ValPtr, void>>;
553 using _Base_ptr =
typename _Node_base::_Base_ptr;
559 _Iterator(_Base_ptr __x) noexcept
562 _Iterator(
const _Iterator&) =
default;
563 _Iterator& operator=(
const _Iterator&) =
default;
565#ifdef __glibcxx_concepts
567 _Iterator(
const _Iterator<false, _ValPtr>& __it)
requires _Const
569 template<
bool _OtherConst,
570 typename = __enable_if_t<_Const && !_OtherConst>>
572 _Iterator(
const _Iterator<_OtherConst, _ValPtr>& __it)
574 : _M_node(__it._M_node) { }
578 operator*() const noexcept
579 {
return *
static_cast<_Node&
>(*_M_node)._M_valptr(); }
583 operator->() const noexcept
584 {
return static_cast<_Node&
>(*_M_node)._M_valptr(); }
586 _GLIBCXX14_CONSTEXPR _Iterator&
587 operator++() noexcept
589 if (_M_node->_M_right)
591 _M_node = _M_node->_M_right;
592 while (_M_node->_M_left)
593 _M_node = _M_node->_M_left;
597 _Base_ptr __y = _M_node->_M_parent;
598 while (_M_node == __y->_M_right)
601 __y = __y->_M_parent;
603 if (_M_node->_M_right != __y)
610 _GLIBCXX14_CONSTEXPR _Iterator
611 operator++(
int)
noexcept
613 _Iterator __tmp(this->_M_node);
618 _GLIBCXX14_CONSTEXPR _Iterator&
619 operator--() noexcept
621 if (_M_node->_M_color == _S_red
622 && _M_node->_M_parent->_M_parent == _M_node)
623 _M_node = _M_node->_M_right;
624 else if (_M_node->_M_left)
626 _Base_ptr __y = _M_node->_M_left;
627 while (__y->_M_right)
633 _Base_ptr __y = _M_node->_M_parent;
634 while (_M_node == __y->_M_left)
637 __y = __y->_M_parent;
644 _GLIBCXX14_CONSTEXPR _Iterator
645 operator--(
int)
noexcept
647 _Iterator __tmp(this->_M_node);
654 operator==(
const _Iterator& __x,
const _Iterator& __y) _GLIBCXX_NOEXCEPT
655 {
return __x._M_node == __y._M_node; }
657#if ! __cpp_lib_three_way_comparison
660 operator!=(
const _Iterator& __x,
const _Iterator& __y) _GLIBCXX_NOEXCEPT
661 {
return __x._M_node != __y._M_node; }
669 template<
typename _Val,
typename _Ptr>
672#if _GLIBCXX_USE_ALLOC_PTR_FOR_RB_TREE <= 9000
676 template<
typename _Val>
677 struct _Node_traits<_Val, _Val*>
679 typedef _Rb_tree_node<_Val> _Node;
680 typedef _Node* _Node_ptr;
681 typedef _Rb_tree_node_base _Node_base;
682 typedef _Node_base* _Base_ptr;
683 typedef _Rb_tree_header _Header_t;
684 typedef _Rb_tree_iterator<_Val> _Iterator;
685 typedef _Rb_tree_const_iterator<_Val> _Const_iterator;
687 __attribute__((__nonnull__))
689 _S_insert_and_rebalance(
const bool __insert_left,
690 _Node_base* __x, _Node_base* __p,
691 _Node_base& __header) _GLIBCXX_USE_NOEXCEPT
693 return _Rb_tree_insert_and_rebalance(__insert_left, __x, __p, __header);
696 __attribute__((__nonnull__,__returns_nonnull__))
698 _S_rebalance_for_erase(_Node_base*
const __z,
699 _Node_base& __header) _GLIBCXX_USE_NOEXCEPT
700 {
return _Rb_tree_rebalance_for_erase(__z, __header); }
704#if ! _GLIBCXX_USE_ALLOC_PTR_FOR_RB_TREE
706 template<
typename _Val,
typename _Ptr>
708 : _Node_traits<_Val, _Val*>
712 template<
typename _Val,
typename _ValPtr>
715 using _Node = __rb_tree::_Node<_ValPtr>;
717 using _Node_base = __rb_tree::_Node_base<__ptr_rebind<_ValPtr, void>>;
719 using _Header_t = __rb_tree::_Header<_Node_base>;
720 using _Iterator = __rb_tree::_Iterator<false, _ValPtr>;
721 using _Const_iterator = __rb_tree::_Iterator<true, _ValPtr>;
724 _Rotate_left(_Base_ptr __x, _Base_ptr& __root)
726 const _Base_ptr __y = __x->_M_right;
728 __x->_M_right = __y->_M_left;
730 __y->_M_left->_M_parent = __x;
731 __y->_M_parent = __x->_M_parent;
735 else if (__x == __x->_M_parent->_M_left)
736 __x->_M_parent->_M_left = __y;
738 __x->_M_parent->_M_right = __y;
740 __x->_M_parent = __y;
744 _Rotate_right(_Base_ptr __x, _Base_ptr& __root)
746 const _Base_ptr __y = __x->_M_left;
748 __x->_M_left = __y->_M_right;
750 __y->_M_right->_M_parent = __x;
751 __y->_M_parent = __x->_M_parent;
755 else if (__x == __x->_M_parent->_M_right)
756 __x->_M_parent->_M_right = __y;
758 __x->_M_parent->_M_left = __y;
760 __x->_M_parent = __y;
764 _S_insert_and_rebalance(
const bool __insert_left,
765 _Base_ptr __x, _Base_ptr __p,
766 _Node_base& __header)
768 _Base_ptr& __root = __header._M_parent;
771 __x->_M_parent = __p;
772 __x->_M_left = __x->_M_right =
nullptr;
773 __x->_M_color = _S_red;
785 __header._M_parent = __x;
786 __header._M_right = __x;
788 else if (__p == __header._M_left)
789 __header._M_left = __x;
795 if (__p == __header._M_right)
796 __header._M_right = __x;
800 && __x->_M_parent->_M_color == _S_red)
802 const _Base_ptr __xpp = __x->_M_parent->_M_parent;
804 if (__x->_M_parent == __xpp->_M_left)
806 const _Base_ptr __y = __xpp->_M_right;
807 if (__y && __y->_M_color == _S_red)
809 __x->_M_parent->_M_color = _S_black;
810 __y->_M_color = _S_black;
811 __xpp->_M_color = _S_red;
816 if (__x == __x->_M_parent->_M_right)
818 __x = __x->_M_parent;
819 _Rotate_left(__x, __root);
821 __x->_M_parent->_M_color = _S_black;
822 __xpp->_M_color = _S_red;
823 _Rotate_right(__xpp, __root);
828 const _Base_ptr __y = __xpp->_M_left;
829 if (__y && __y->_M_color == _S_red)
831 __x->_M_parent->_M_color = _S_black;
832 __y->_M_color = _S_black;
833 __xpp->_M_color = _S_red;
838 if (__x == __x->_M_parent->_M_left)
840 __x = __x->_M_parent;
841 _Rotate_right(__x, __root);
843 __x->_M_parent->_M_color = _S_black;
844 __xpp->_M_color = _S_red;
845 _Rotate_left(__xpp, __root);
849 __root->_M_color = _S_black;
853 _S_rebalance_for_erase(_Base_ptr __z, _Node_base& __header)
855 _Base_ptr& __root = __header._M_parent;
856 _Base_ptr& __leftmost = __header._M_left;
857 _Base_ptr& __rightmost = __header._M_right;
860 _Base_ptr __x_parent{};
878 __z->_M_left->_M_parent = __y;
879 __y->_M_left = __z->_M_left;
880 if (__y != __z->_M_right)
882 __x_parent = __y->_M_parent;
884 __x->_M_parent = __y->_M_parent;
885 __y->_M_parent->_M_left = __x;
886 __y->_M_right = __z->_M_right;
887 __z->_M_right->_M_parent = __y;
893 else if (__z->_M_parent->_M_left == __z)
894 __z->_M_parent->_M_left = __y;
896 __z->_M_parent->_M_right = __y;
897 __y->_M_parent = __z->_M_parent;
898 std::swap(__y->_M_color, __z->_M_color);
904 __x_parent = __y->_M_parent;
906 __x->_M_parent = __y->_M_parent;
910 if (__z->_M_parent->_M_left == __z)
911 __z->_M_parent->_M_left = __x;
913 __z->_M_parent->_M_right = __x;
914 if (__leftmost == __z)
917 __leftmost = __z->_M_parent;
920 __leftmost = _Node_base::_S_minimum(__x);
922 if (__rightmost == __z)
924 if (__z->_M_left == 0)
925 __rightmost = __z->_M_parent;
928 __rightmost = _Node_base::_S_maximum(__x);
931 if (__y->_M_color != _S_red)
933 while (__x != __root && (__x == 0 || __x->_M_color == _S_black))
934 if (__x == __x_parent->_M_left)
936 _Base_ptr __w = __x_parent->_M_right;
937 if (__w->_M_color == _S_red)
939 __w->_M_color = _S_black;
940 __x_parent->_M_color = _S_red;
941 _Rotate_left(__x_parent, __root);
942 __w = __x_parent->_M_right;
944 if ((!__w->_M_left || __w->_M_left->_M_color == _S_black) &&
945 (!__w->_M_right || __w->_M_right->_M_color == _S_black))
947 __w->_M_color = _S_red;
949 __x_parent = __x_parent->_M_parent;
953 if (!__w->_M_right || __w->_M_right->_M_color == _S_black)
955 __w->_M_left->_M_color = _S_black;
956 __w->_M_color = _S_red;
957 _Rotate_right(__w, __root);
958 __w = __x_parent->_M_right;
960 __w->_M_color = __x_parent->_M_color;
961 __x_parent->_M_color = _S_black;
963 __w->_M_right->_M_color = _S_black;
964 _Rotate_left(__x_parent, __root);
971 _Base_ptr __w = __x_parent->_M_left;
972 if (__w->_M_color == _S_red)
974 __w->_M_color = _S_black;
975 __x_parent->_M_color = _S_red;
976 _Rotate_right(__x_parent, __root);
977 __w = __x_parent->_M_left;
979 if ((!__w->_M_right || __w->_M_right->_M_color == _S_black) &&
980 (!__w->_M_left || __w->_M_left->_M_color == _S_black))
982 __w->_M_color = _S_red;
984 __x_parent = __x_parent->_M_parent;
988 if (!__w->_M_left || __w->_M_left->_M_color == _S_black)
990 __w->_M_right->_M_color = _S_black;
991 __w->_M_color = _S_red;
992 _Rotate_left(__w, __root);
993 __w = __x_parent->_M_left;
995 __w->_M_color = __x_parent->_M_color;
996 __x_parent->_M_color = _S_black;
998 __w->_M_left->_M_color = _S_black;
999 _Rotate_right(__x_parent, __root);
1004 __x->_M_color = _S_black;
1013#ifdef __glibcxx_node_extract
1014 template<
typename _Tree1,
typename _Cmp2>
1015 struct _Rb_tree_merge_helper { };
1018 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
1022 typedef typename __gnu_cxx::__alloc_traits<_Alloc>::template
1023 rebind<_Val>::other _Val_alloc_type;
1025 typedef __gnu_cxx::__alloc_traits<_Val_alloc_type> _Val_alloc_traits;
1026 typedef typename _Val_alloc_traits::pointer _ValPtr;
1027 typedef __rb_tree::_Node_traits<_Val, _ValPtr> _Node_traits;
1029 typedef typename _Node_traits::_Node_base _Node_base;
1030 typedef typename _Node_traits::_Node _Node;
1032 typedef typename __gnu_cxx::__alloc_traits<_Alloc>::template
1033 rebind<_Node>::other _Node_allocator;
1035 typedef __gnu_cxx::__alloc_traits<_Node_allocator> _Node_alloc_traits;
1038 typedef typename _Node_traits::_Base_ptr _Base_ptr;
1039 typedef typename _Node_traits::_Node_ptr _Node_ptr;
1044 struct _Reuse_or_alloc_node
1046 _Reuse_or_alloc_node(_Rb_tree& __t)
1047 : _M_root(__t._M_root()), _M_nodes(__t._M_rightmost()), _M_t(__t)
1051 _M_root->_M_parent = _Base_ptr();
1053 if (_M_nodes->_M_left)
1054 _M_nodes = _M_nodes->_M_left;
1057 _M_nodes = _Base_ptr();
1060#if __cplusplus >= 201103L
1061 _Reuse_or_alloc_node(
const _Reuse_or_alloc_node&) =
delete;
1064 ~_Reuse_or_alloc_node()
1067 _M_t._M_erase(
static_cast<_Node&
>(*_M_root)._M_node_ptr());
1070 template<
typename _Arg>
1072 operator()(_GLIBCXX_FWDREF(_Arg) __arg)
1074 _Base_ptr
__base = _M_extract();
1077 _Node_ptr __node =
static_cast<_Node&
>(*__base)._M_node_ptr();
1078 _M_t._M_destroy_node(__node);
1079 _M_t._M_construct_node(__node, _GLIBCXX_FORWARD(_Arg, __arg));
1083 return _M_t._M_create_node(_GLIBCXX_FORWARD(_Arg, __arg));
1093 _Base_ptr __node = _M_nodes;
1094 _M_nodes = _M_nodes->_M_parent;
1097 if (_M_nodes->_M_right == __node)
1099 _M_nodes->_M_right = _Base_ptr();
1101 if (_M_nodes->_M_left)
1103 _M_nodes = _M_nodes->_M_left;
1105 while (_M_nodes->_M_right)
1106 _M_nodes = _M_nodes->_M_right;
1108 if (_M_nodes->_M_left)
1109 _M_nodes = _M_nodes->_M_left;
1113 _M_nodes->_M_left = _Base_ptr();
1116 _M_root = _Base_ptr();
1130 _Alloc_node(_Rb_tree& __t)
1133 template<
typename _Arg>
1135 operator()(_GLIBCXX_FWDREF(_Arg) __arg)
const
1136 {
return _M_t._M_create_node(_GLIBCXX_FORWARD(_Arg, __arg)); }
1143 typedef _Key key_type;
1144 typedef _Val value_type;
1145 typedef value_type* pointer;
1146 typedef const value_type* const_pointer;
1147 typedef value_type& reference;
1148 typedef const value_type& const_reference;
1149 typedef size_t size_type;
1150 typedef ptrdiff_t difference_type;
1151 typedef _Alloc allocator_type;
1154 _M_get_Node_allocator() _GLIBCXX_NOEXCEPT
1155 {
return this->_M_impl; }
1157 const _Node_allocator&
1158 _M_get_Node_allocator() const _GLIBCXX_NOEXCEPT
1159 {
return this->_M_impl; }
1162 get_allocator() const _GLIBCXX_NOEXCEPT
1163 {
return allocator_type(_M_get_Node_allocator()); }
1169#if __cplusplus < 201102L || _GLIBCXX_USE_ALLOC_PTR_FOR_RB_TREE
1172#pragma GCC diagnostic push
1173#pragma GCC diagnostic ignored "-Wc++17-extensions"
1174 using __alloc_pointer =
typename _Node_alloc_traits::pointer;
1175 if constexpr (is_same<_Node_ptr, __alloc_pointer>::value)
1181 return std::__to_address(__ptr);
1183#pragma GCC diagnostic pop
1188 _M_put_node(_Node_ptr __p) _GLIBCXX_NOEXCEPT
1190#if __cplusplus < 201102L || _GLIBCXX_USE_ALLOC_PTR_FOR_RB_TREE
1193#pragma GCC diagnostic push
1194#pragma GCC diagnostic ignored "-Wc++17-extensions"
1195 using __alloc_pointer =
typename _Node_alloc_traits::pointer;
1196 if constexpr (is_same<_Node_ptr, __alloc_pointer>::value)
1202 auto __ap = pointer_traits<__alloc_pointer>::pointer_to(*__p);
1205#pragma GCC diagnostic pop
1209#if __cplusplus < 201103L
1211 _M_construct_node(_Node_ptr __node,
const value_type& __x)
1214 { get_allocator().construct(__node->_M_valptr(), __x); }
1217 _M_put_node(__node);
1218 __throw_exception_again;
1223 _M_create_node(
const value_type& __x)
1225 _Node_ptr __tmp = _M_get_node();
1226 _M_construct_node(__tmp, __x);
1230 template<
typename... _Args>
1232 _M_construct_node(_Node_ptr __node, _Args&&... __args)
1237 _Node_alloc_traits::construct(_M_get_Node_allocator(),
1238 __node->_M_valptr(),
1244 _M_put_node(__node);
1245 __throw_exception_again;
1249 template<
typename... _Args>
1251 _M_create_node(_Args&&... __args)
1253 _Node_ptr __tmp = _M_get_node();
1260 _M_destroy_node(_Node_ptr __p) _GLIBCXX_NOEXCEPT
1262#if __cplusplus < 201103L
1263 get_allocator().destroy(__p->_M_valptr());
1265 _Node_alloc_traits::destroy(_M_get_Node_allocator(), __p->_M_valptr());
1271 _M_drop_node(_Node_ptr __p) _GLIBCXX_NOEXCEPT
1273 _M_destroy_node(__p);
1277 template<
bool _MoveValue,
typename _NodeGen>
1279 _M_clone_node(_Node_ptr __x, _NodeGen& __node_gen)
1281#if __cplusplus >= 201103L
1282 using _Vp = __conditional_t<_MoveValue,
1287 = __node_gen(_GLIBCXX_FORWARD(_Vp, *__x->_M_valptr()));
1288 __tmp->_M_color = __x->_M_color;
1289 __tmp->_M_left = __tmp->_M_right = _Base_ptr();
1294 typedef typename _Node_traits::_Header_t _Header_t;
1296#if _GLIBCXX_INLINE_VERSION
1297 template<
typename _Key_compare>
1300 template<
typename _Key_compare,
1301 bool = __is_pod(_Key_compare)>
1303 struct _Rb_tree_impl
1304 :
public _Node_allocator
1305 ,
public _Rb_tree_key_compare<_Key_compare>
1308 typedef _Rb_tree_key_compare<_Key_compare> _Base_key_compare;
1311 _GLIBCXX_NOEXCEPT_IF(
1312 is_nothrow_default_constructible<_Node_allocator>::value
1313 && is_nothrow_default_constructible<_Base_key_compare>::value )
1317 _Rb_tree_impl(
const _Rb_tree_impl& __x)
1318 : _Node_allocator(_Node_alloc_traits::_S_select_on_copy(__x))
1319 , _Base_key_compare(__x._M_key_compare)
1323#if __cplusplus < 201103L
1324 _Rb_tree_impl(
const _Key_compare& __comp,
const _Node_allocator& __a)
1325 : _Node_allocator(__a), _Base_key_compare(__comp)
1328 _Rb_tree_impl(_Rb_tree_impl&&)
1329 noexcept( is_nothrow_move_constructible<_Base_key_compare>::value )
1333 _Rb_tree_impl(_Node_allocator&& __a)
1334 : _Node_allocator(std::
move(__a))
1337 _Rb_tree_impl(_Rb_tree_impl&& __x, _Node_allocator&& __a)
1338 : _Node_allocator(std::
move(__a)),
1339 _Base_key_compare(std::
move(__x)),
1340 _Header_t(std::
move(__x))
1343 _Rb_tree_impl(
const _Key_compare& __comp, _Node_allocator&& __a)
1344 : _Node_allocator(std::
move(__a)), _Base_key_compare(__comp)
1349 _Rb_tree_impl<_Compare> _M_impl;
1353 _M_root() _GLIBCXX_NOEXCEPT
1354 {
return this->_M_impl._M_header._M_parent; }
1357 _M_root() const _GLIBCXX_NOEXCEPT
1358 {
return this->_M_impl._M_header._M_parent; }
1361 _M_leftmost() _GLIBCXX_NOEXCEPT
1362 {
return this->_M_impl._M_header._M_left; }
1365 _M_leftmost() const _GLIBCXX_NOEXCEPT
1366 {
return this->_M_impl._M_header._M_left; }
1369 _M_rightmost() _GLIBCXX_NOEXCEPT
1370 {
return this->_M_impl._M_header._M_right; }
1373 _M_rightmost() const _GLIBCXX_NOEXCEPT
1374 {
return this->_M_impl._M_header._M_right; }
1377 _M_begin() const _GLIBCXX_NOEXCEPT
1378 {
return this->_M_impl._M_header._M_parent; }
1381 _M_begin_node() const _GLIBCXX_NOEXCEPT
1383 _Base_ptr __begin = this->_M_impl._M_header._M_parent;
1385 ?
static_cast<_Node&
>(*__begin)._M_node_ptr()
1390 _M_end() const _GLIBCXX_NOEXCEPT
1391 {
return this->_M_impl._M_header._M_base_ptr(); }
1395 template<
typename _Key1,
typename _Key2>
1397 _M_key_compare(
const _Key1& __k1,
const _Key2& __k2)
const
1399#if __cplusplus >= 201103L
1402 __is_invocable<const _Compare&, const _Key&, const _Key&>::value,
1403 "comparison object must be invocable with arguments of key_type"
1406 return _M_impl._M_key_compare(__k1, __k2);
1410 _S_key(
const _Node& __node)
1411 {
return _KeyOfValue()(*__node._M_valptr()); }
1414 _S_key(_Base_ptr __x)
1415 {
return _S_key(
static_cast<const _Node&
>(*__x)); }
1418 _S_key(_Node_ptr __x)
1419 {
return _S_key(*__x); }
1422 _S_left(_Base_ptr __x) _GLIBCXX_NOEXCEPT
1423 {
return __x->_M_left; }
1426 _S_left(_Node_ptr __x)
1429 ?
static_cast<_Node&
>(*__x->_M_left)._M_node_ptr()
1434 _S_right(_Base_ptr __x) _GLIBCXX_NOEXCEPT
1435 {
return __x->_M_right; }
1438 _S_right(_Node_ptr __x) _GLIBCXX_NOEXCEPT
1440 return __x->_M_right
1441 ?
static_cast<_Node&
>(*__x->_M_right)._M_node_ptr()
1446 typedef typename _Node_traits::_Iterator iterator;
1447 typedef typename _Node_traits::_Const_iterator const_iterator;
1449 typedef std::reverse_iterator<iterator> reverse_iterator;
1450 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
1452#ifdef __glibcxx_node_extract
1453 using node_type = _Node_handle<_Key, _Val, _Node_allocator>;
1454 using insert_return_type = _Node_insert_return<
1455 __conditional_t<is_same_v<_Key, _Val>, const_iterator, iterator>,
1460 _M_get_insert_unique_pos(
const key_type& __k);
1463 _M_get_insert_equal_pos(
const key_type& __k);
1466 _M_get_insert_hint_unique_pos(const_iterator __pos,
1467 const key_type& __k);
1470 _M_get_insert_hint_equal_pos(const_iterator __pos,
1471 const key_type& __k);
1473#ifdef __glibcxx_associative_heterogeneous_insertion
1474 template <
typename... _Args>
1476 _M_emplace_here(
bool __place_left, _Base_ptr __node, _Args&&... __args);
1478 template <
typename _Kt>
1480 _M_get_insert_unique_pos_tr(
const _Kt& __k);
1482 template <
typename _Kt>
1484 _M_get_insert_hint_unique_pos_tr(const_iterator,
const _Kt& __k);
1488#if __cplusplus >= 201103L
1489 template<
typename _Arg,
typename _NodeGen>
1491 _M_insert_(_Base_ptr __x, _Base_ptr __y, _Arg&& __v, _NodeGen&);
1494 _M_insert_node(_Base_ptr __x, _Base_ptr __y, _Node_ptr __z);
1496 template<
typename _Arg>
1498 _M_insert_lower(_Base_ptr __y, _Arg&& __v);
1500 template<
typename _Arg>
1502 _M_insert_equal_lower(_Arg&& __x);
1505 _M_insert_lower_node(_Base_ptr __p, _Node_ptr __z);
1508 _M_insert_equal_lower_node(_Node_ptr __z);
1510 template<
typename _NodeGen>
1512 _M_insert_(_Base_ptr __x, _Base_ptr __y,
1513 const value_type& __v, _NodeGen&);
1518 _M_insert_lower(_Base_ptr __y,
const value_type& __v);
1521 _M_insert_equal_lower(
const value_type& __x);
1524 enum { __as_lvalue, __as_rvalue };
1526 template<
bool _MoveValues,
typename _NodeGen>
1528 _M_copy(_Node_ptr, _Base_ptr, _NodeGen&);
1530 template<
bool _MoveValues,
typename _NodeGen>
1532 _M_copy(
const _Rb_tree& __x, _NodeGen& __gen)
1535 _M_copy<_MoveValues>(__x._M_begin_node(), _M_end(), __gen);
1536 _M_leftmost() = _Node_base::_S_minimum(__root);
1537 _M_rightmost() = _Node_base::_S_maximum(__root);
1538 _M_impl._M_node_count = __x._M_impl._M_node_count;
1543 _M_copy(
const _Rb_tree& __x)
1545 _Alloc_node __an(*
this);
1546 return _M_copy<__as_lvalue>(__x, __an);
1550 _M_erase(_Node_ptr __x);
1553 _M_lower_bound(_Base_ptr __x, _Base_ptr __y,
1554 const _Key& __k)
const;
1556 template <
typename _Kt>
1558 _M_lower_bound_tr(_Base_ptr __x, _Base_ptr __y,
const _Kt& __k)
const;
1561 _M_upper_bound(_Base_ptr __x, _Base_ptr __y,
1562 const _Key& __k)
const;
1564 template <
typename _Kt>
1566 _M_upper_bound_tr(_Base_ptr __x, _Base_ptr __y,
const _Kt& __k)
const;
1570#if __cplusplus < 201103L
1573 _Rb_tree() =
default;
1576 _Rb_tree(
const _Compare& __comp,
1577 const allocator_type& __a = allocator_type())
1578 : _M_impl(__comp, _Node_allocator(__a)) { }
1580 _Rb_tree(
const _Rb_tree& __x)
1581 : _M_impl(__x._M_impl)
1584 _M_root() = _M_copy(__x);
1587#if __cplusplus >= 201103L
1588 _Rb_tree(
const allocator_type& __a)
1589 : _M_impl(_Node_allocator(__a))
1592 _Rb_tree(
const _Rb_tree& __x,
const allocator_type& __a)
1593 : _M_impl(__x._M_impl._M_key_compare, _Node_allocator(__a))
1596 _M_root() = _M_copy(__x);
1599 _Rb_tree(_Rb_tree&&) =
default;
1601 _Rb_tree(_Rb_tree&& __x,
const allocator_type& __a)
1602 : _Rb_tree(std::
move(__x), _Node_allocator(__a))
1606 _Rb_tree(_Rb_tree&& __x, _Node_allocator&& __a,
true_type)
1607 noexcept(is_nothrow_default_constructible<_Compare>::value)
1608 : _M_impl(std::
move(__x._M_impl), std::
move(__a))
1611 _Rb_tree(_Rb_tree&& __x, _Node_allocator&& __a,
false_type)
1612 : _M_impl(__x._M_impl._M_key_compare, std::
move(__a))
1619 _Rb_tree(_Rb_tree&& __x, _Node_allocator&& __a)
1623 : _Rb_tree(std::
move(__x), std::
move(__a),
1624 typename _Node_alloc_traits::is_always_equal{})
1628 ~_Rb_tree() _GLIBCXX_NOEXCEPT
1629 { _M_erase(_M_begin_node()); }
1632 operator=(
const _Rb_tree& __x);
1637 {
return _M_impl._M_key_compare; }
1640 begin() _GLIBCXX_NOEXCEPT
1641 {
return iterator(this->_M_impl._M_header._M_left); }
1644 begin() const _GLIBCXX_NOEXCEPT
1645 {
return const_iterator(this->_M_impl._M_header._M_left); }
1648 end() _GLIBCXX_NOEXCEPT
1649 {
return iterator(_M_end()); }
1652 end() const _GLIBCXX_NOEXCEPT
1653 {
return const_iterator(_M_end()); }
1656 rbegin() _GLIBCXX_NOEXCEPT
1657 {
return reverse_iterator(end()); }
1659 const_reverse_iterator
1660 rbegin() const _GLIBCXX_NOEXCEPT
1661 {
return const_reverse_iterator(end()); }
1664 rend() _GLIBCXX_NOEXCEPT
1665 {
return reverse_iterator(begin()); }
1667 const_reverse_iterator
1668 rend() const _GLIBCXX_NOEXCEPT
1669 {
return const_reverse_iterator(begin()); }
1671 _GLIBCXX_NODISCARD
bool
1672 empty() const _GLIBCXX_NOEXCEPT
1673 {
return _M_impl._M_node_count == 0; }
1676 size() const _GLIBCXX_NOEXCEPT
1677 {
return _M_impl._M_node_count; }
1680 max_size() const _GLIBCXX_NOEXCEPT
1685 _GLIBCXX_NOEXCEPT_IF(__is_nothrow_swappable<_Compare>::value);
1688#if __cplusplus >= 201103L
1689 template<
typename _Arg>
1691 _M_insert_unique(_Arg&& __x);
1693 template<
typename _Arg>
1695 _M_insert_equal(_Arg&& __x);
1697 template<
typename _Arg,
typename _NodeGen>
1699 _M_insert_unique_(const_iterator __pos, _Arg&& __x, _NodeGen&);
1701 template<
typename _Arg>
1703 _M_insert_unique_(const_iterator __pos, _Arg&& __x)
1705 _Alloc_node __an(*
this);
1709 template<
typename _Arg,
typename _NodeGen>
1711 _M_insert_equal_(const_iterator __pos, _Arg&& __x, _NodeGen&);
1713 template<
typename _Arg>
1715 _M_insert_equal_(const_iterator __pos, _Arg&& __x)
1717 _Alloc_node __an(*
this);
1721 template<
typename... _Args>
1723 _M_emplace_unique(_Args&&... __args);
1725 template<
typename... _Args>
1727 _M_emplace_equal(_Args&&... __args);
1729 template<
typename... _Args>
1731 _M_emplace_hint_unique(const_iterator __pos, _Args&&... __args);
1733 template<
typename... _Args>
1735 _M_emplace_hint_equal(const_iterator __pos, _Args&&... __args);
1737 template<
typename _Iter>
1738 using __same_value_type
1739 = is_same<value_type, typename iterator_traits<_Iter>::value_type>;
1741 template<
typename _InputIterator>
1742 __enable_if_t<__same_value_type<_InputIterator>::value>
1743 _M_insert_range_unique(_InputIterator __first, _InputIterator __last)
1745 _Alloc_node __an(*
this);
1746 for (; __first != __last; ++__first)
1747 _M_insert_unique_(end(), *__first, __an);
1750 template<
typename _InputIterator>
1751 __enable_if_t<!__same_value_type<_InputIterator>::value>
1752 _M_insert_range_unique(_InputIterator __first, _InputIterator __last)
1754 for (; __first != __last; ++__first)
1755 _M_emplace_unique(*__first);
1758 template<
typename _InputIterator>
1759 __enable_if_t<__same_value_type<_InputIterator>::value>
1760 _M_insert_range_equal(_InputIterator __first, _InputIterator __last)
1762 _Alloc_node __an(*
this);
1763 for (; __first != __last; ++__first)
1764 _M_insert_equal_(end(), *__first, __an);
1767 template<
typename _InputIterator>
1768 __enable_if_t<!__same_value_type<_InputIterator>::value>
1769 _M_insert_range_equal(_InputIterator __first, _InputIterator __last)
1771 for (; __first != __last; ++__first)
1772 _M_emplace_equal(*__first);
1776 _M_insert_unique(
const value_type& __x);
1779 _M_insert_equal(
const value_type& __x);
1781 template<
typename _NodeGen>
1783 _M_insert_unique_(const_iterator __pos,
const value_type& __x,
1787 _M_insert_unique_(const_iterator __pos,
const value_type& __x)
1789 _Alloc_node __an(*
this);
1790 return _M_insert_unique_(__pos, __x, __an);
1793 template<
typename _NodeGen>
1795 _M_insert_equal_(const_iterator __pos,
const value_type& __x,
1798 _M_insert_equal_(const_iterator __pos,
const value_type& __x)
1800 _Alloc_node __an(*
this);
1801 return _M_insert_equal_(__pos, __x, __an);
1804 template<
typename _InputIterator>
1806 _M_insert_range_unique(_InputIterator __first, _InputIterator __last)
1808 _Alloc_node __an(*
this);
1809 for (; __first != __last; ++__first)
1810 _M_insert_unique_(end(), *__first, __an);
1813 template<
typename _InputIterator>
1815 _M_insert_range_equal(_InputIterator __first, _InputIterator __last)
1817 _Alloc_node __an(*
this);
1818 for (; __first != __last; ++__first)
1819 _M_insert_equal_(end(), *__first, __an);
1825 _M_erase_aux(const_iterator __position);
1828 _M_erase_aux(const_iterator __first, const_iterator __last);
1831#if __cplusplus >= 201103L
1834 _GLIBCXX_ABI_TAG_CXX11
1836 erase(const_iterator __position)
1838 __glibcxx_assert(__position != end());
1839 const_iterator __result = __position;
1841 _M_erase_aux(__position);
1842 return iterator(__result._M_node);
1846 _GLIBCXX_ABI_TAG_CXX11
1848 erase(iterator __position)
1850 __glibcxx_assert(__position != end());
1851 iterator __result = __position;
1853 _M_erase_aux(__position);
1858 erase(iterator __position)
1860 __glibcxx_assert(__position != end());
1861 _M_erase_aux(__position);
1865 erase(const_iterator __position)
1867 __glibcxx_assert(__position != end());
1868 _M_erase_aux(__position);
1873 erase(
const key_type& __x);
1875 template <
typename _Kt>
1877 _M_erase_tr(
const _Kt& __x);
1880 _M_erase_unique(
const key_type& __x);
1882#if __cplusplus >= 201103L
1885 _GLIBCXX_ABI_TAG_CXX11
1887 erase(const_iterator __first, const_iterator __last)
1889 _M_erase_aux(__first, __last);
1890 return iterator(__last._M_node);
1894 erase(iterator __first, iterator __last)
1895 { _M_erase_aux(__first, __last); }
1898 erase(const_iterator __first, const_iterator __last)
1899 { _M_erase_aux(__first, __last); }
1903 clear() _GLIBCXX_NOEXCEPT
1905 _M_erase(_M_begin_node());
1911 find(
const key_type& __k);
1914 find(
const key_type& __k)
const;
1917 count(
const key_type& __k)
const;
1920 lower_bound(
const key_type& __k)
1921 {
return iterator(_M_lower_bound(_M_begin(), _M_end(), __k)); }
1924 lower_bound(
const key_type& __k)
const
1926 return const_iterator
1927 (_M_lower_bound(_M_begin(), _M_end(), __k));
1931 upper_bound(
const key_type& __k)
1932 {
return iterator(_M_upper_bound(_M_begin(), _M_end(), __k)); }
1935 upper_bound(
const key_type& __k)
const
1937 return const_iterator
1938 (_M_upper_bound(_M_begin(), _M_end(), __k));
1942 equal_range(
const key_type& __k);
1945 equal_range(
const key_type& __k)
const;
1947#ifdef __glibcxx_generic_associative_lookup
1948 template<
typename _Kt,
1949 typename _Req = __has_is_transparent_t<_Compare, _Kt>>
1951 _M_find_tr(
const _Kt& __k)
1953 const _Rb_tree* __const_this =
this;
1954 return iterator(__const_this->_M_find_tr(__k)._M_node);
1957 template<
typename _Kt,
1958 typename _Req = __has_is_transparent_t<_Compare, _Kt>>
1960 _M_find_tr(
const _Kt& __k)
const
1962 const_iterator __j(_M_lower_bound_tr(__k));
1963 if (__j != end() && _M_key_compare(__k, _S_key(__j._M_node)))
1968 template<
typename _Kt,
1969 typename _Req = __has_is_transparent_t<_Compare, _Kt>>
1971 _M_count_tr(
const _Kt& __k)
const
1973 auto __p = _M_equal_range_tr(__k);
1977 template<
typename _Kt,
1978 typename _Req = __has_is_transparent_t<_Compare, _Kt>>
1980 _M_lower_bound_tr(
const _Kt& __k)
const
1982 auto __x = _M_begin();
1983 auto __y = _M_end();
1985 if (!_M_key_compare(_S_key(__x), __k))
1991 __x = _S_right(__x);
1995 template<
typename _Kt,
1996 typename _Req = __has_is_transparent_t<_Compare, _Kt>>
1998 _M_upper_bound_tr(
const _Kt& __k)
const
2000 auto __x = _M_begin();
2001 auto __y = _M_end();
2003 if (_M_key_compare(__k, _S_key(__x)))
2009 __x = _S_right(__x);
2013 template<
typename _Kt,
2014 typename _Req = __has_is_transparent_t<_Compare, _Kt>>
2016 _M_equal_range_tr(
const _Kt& __k)
2018 const _Rb_tree* __const_this =
this;
2019 auto __ret = __const_this->_M_equal_range_tr(__k);
2021 { iterator(__ret.first._M_node), iterator(__ret.second._M_node) };
2024 template<
typename _Kt,
2025 typename _Req = __has_is_transparent_t<_Compare, _Kt>>
2027 _M_equal_range_tr(
const _Kt& __k)
const
2029 const_iterator __low(_M_lower_bound_tr(__k));
2030 auto __high = __low;
2031 auto& __cmp = _M_impl._M_key_compare;
2032 while (__high != end() && !__cmp(__k, _S_key(__high._M_node)))
2034 return { __low, __high };
2040 __rb_verify()
const;
2042#if __cplusplus >= 201103L
2044 operator=(_Rb_tree&&)
2045 noexcept(_Node_alloc_traits::_S_nothrow_move()
2046 && is_nothrow_move_assignable<_Compare>::value);
2048 template<typename _Iterator>
2050 _M_assign_unique(_Iterator, _Iterator);
2052 template<typename _Iterator>
2054 _M_assign_equal(_Iterator, _Iterator);
2060 { _M_impl._M_move_data(__x._M_impl); }
2077#ifdef __glibcxx_node_extract
2079 _S_adapt(
typename _Node_alloc_traits::pointer __ptr)
2081#if _GLIBCXX_USE_ALLOC_PTR_FOR_RB_TREE
2084#pragma GCC diagnostic push
2085#pragma GCC diagnostic ignored "-Wc++17-extensions"
2086 using __alloc_ptr =
typename _Node_alloc_traits::pointer;
2087 if constexpr (is_same<_Node_ptr, __alloc_ptr>::value)
2090 return std::__to_address(__ptr);
2091#pragma GCC diagnostic pop
2098 _M_reinsert_node_unique(node_type&& __nh)
2100 insert_return_type __ret;
2102 __ret.position = end();
2105 __glibcxx_assert(_M_get_Node_allocator() == *__nh._M_alloc);
2107 auto __res = _M_get_insert_unique_pos(__nh._M_key());
2111 = _M_insert_node(__res.first, __res.second,
2112 _S_adapt(__nh._M_ptr));
2114 __ret.inserted =
true;
2119 __ret.position = iterator(__res.first);
2120 __ret.inserted =
false;
2128 _M_reinsert_node_equal(node_type&& __nh)
2135 __glibcxx_assert(_M_get_Node_allocator() == *__nh._M_alloc);
2136 auto __res = _M_get_insert_equal_pos(__nh._M_key());
2138 __ret = _M_insert_node(__res.first, __res.second,
2139 _S_adapt(__nh._M_ptr));
2141 __ret = _M_insert_equal_lower_node(_S_adapt(__nh._M_ptr));
2149 _M_reinsert_node_hint_unique(const_iterator __hint, node_type&& __nh)
2156 __glibcxx_assert(_M_get_Node_allocator() == *__nh._M_alloc);
2157 auto __res = _M_get_insert_hint_unique_pos(__hint, __nh._M_key());
2160 __ret = _M_insert_node(__res.first, __res.second,
2161 _S_adapt(__nh._M_ptr));
2165 __ret = iterator(__res.first);
2172 _M_reinsert_node_hint_equal(const_iterator __hint, node_type&& __nh)
2179 __glibcxx_assert(_M_get_Node_allocator() == *__nh._M_alloc);
2180 auto __res = _M_get_insert_hint_equal_pos(__hint, __nh._M_key());
2182 __ret = _M_insert_node(__res.first, __res.second,
2183 _S_adapt(__nh._M_ptr));
2185 __ret = _M_insert_equal_lower_node(_S_adapt(__nh._M_ptr));
2193 extract(const_iterator __pos)
2195 auto __ptr = _Node_traits::_S_rebalance_for_erase
2196 (__pos._M_node, _M_impl._M_header);
2197 --_M_impl._M_node_count;
2198 auto __node_ptr =
static_cast<_Node&
>(*__ptr)._M_node_ptr();
2199#if _GLIBCXX_USE_ALLOC_PTR_FOR_RB_TREE
2200 return { __node_ptr, _M_get_Node_allocator() };
2202#pragma GCC diagnostic push
2203#pragma GCC diagnostic ignored "-Wc++17-extensions"
2204 using __alloc_ptr =
typename _Node_alloc_traits::pointer;
2205 if constexpr (is_same<_Node_ptr, __alloc_ptr>::value)
2206 return { __node_ptr, _M_get_Node_allocator() };
2209 auto __ap = pointer_traits<__alloc_ptr>::pointer_to(*__node_ptr);
2210 return { __ap, _M_get_Node_allocator() };
2212#pragma GCC diagnostic pop
2218 extract(
const key_type& __k)
2221 auto __pos = find(__k);
2223 __nh = extract(const_iterator(__pos));
2227 template <
typename _Kt>
2229 _M_extract_tr(
const _Kt& __k)
2232 auto __pos = _M_find_tr(__k);
2234 __nh = extract(const_iterator(__pos));
2238 template<
typename _Compare2>
2239 using _Compatible_tree
2240 = _Rb_tree<_Key, _Val, _KeyOfValue, _Compare2, _Alloc>;
2242 template<
typename,
typename>
2243 friend struct _Rb_tree_merge_helper;
2246 template<
typename _Compare2>
2248 _M_merge_unique(_Compatible_tree<_Compare2>& __src)
noexcept
2250 using _Merge_helper = _Rb_tree_merge_helper<_Rb_tree, _Compare2>;
2251 for (
auto __i = __src.begin(), __end = __src.end(); __i != __end;)
2254 auto __res = _M_get_insert_unique_pos(_KeyOfValue()(*__pos));
2257 auto& __src_impl = _Merge_helper::_S_get_impl(__src);
2258 auto __ptr = _Node_traits::_S_rebalance_for_erase
2259 (__pos._M_node, __src_impl._M_header);
2260 --__src_impl._M_node_count;
2261 auto __node_ptr =
static_cast<_Node&
>(*__ptr)._M_node_ptr();
2262 _M_insert_node(__res.first, __res.second, __node_ptr);
2268 template<
typename _Compare2>
2270 _M_merge_equal(_Compatible_tree<_Compare2>& __src)
noexcept
2272 using _Merge_helper = _Rb_tree_merge_helper<_Rb_tree, _Compare2>;
2273 for (
auto __i = __src.begin(), __end = __src.end(); __i != __end;)
2276 auto __res = _M_get_insert_equal_pos(_KeyOfValue()(*__pos));
2279 auto& __src_impl = _Merge_helper::_S_get_impl(__src);
2280 auto __ptr = _Node_traits::_S_rebalance_for_erase
2281 (__pos._M_node, __src_impl._M_header);
2282 --__src_impl._M_node_count;
2283 auto __node_ptr =
static_cast<_Node&
>(*__ptr)._M_node_ptr();
2284 _M_insert_node(__res.first, __res.second, __node_ptr);
2291 operator==(
const _Rb_tree& __x,
const _Rb_tree& __y)
2293 return __x.size() == __y.size()
2294 && std::equal(__x.begin(), __x.end(), __y.begin());
2297#if __cpp_lib_three_way_comparison
2299 operator<=>(
const _Rb_tree& __x,
const _Rb_tree& __y)
2301 if constexpr (
requires {
typename __detail::__synth3way_t<_Val>; })
2303 __y.begin(), __y.end(),
2304 __detail::__synth3way);
2308 operator<(
const _Rb_tree& __x,
const _Rb_tree& __y)
2310 return std::lexicographical_compare(__x.begin(), __x.end(),
2311 __y.begin(), __y.end());
2316#if __cplusplus >= 201103L
2320 template<
typename... _Args>
2321 _Auto_node(_Rb_tree& __t, _Args&&... __args)
2323 _M_node(__t._M_create_node(std::
forward<_Args>(__args)...))
2329 _M_t._M_drop_node(_M_node);
2332 _Auto_node(_Auto_node&& __n)
2333 : _M_t(__n._M_t), _M_node(__n._M_node)
2334 { __n._M_node =
nullptr; }
2338 {
return _S_key(_M_node); }
2343 auto __it = _M_t._M_insert_node(__p.first, __p.second, _M_node);
2349 _M_insert_equal_lower()
2351 auto __it = _M_t._M_insert_equal_lower_node(_M_node);
2362 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2363 typename _Compare,
typename _Alloc>
2365 swap(_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __x,
2366 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __y)
2369#if __cplusplus >= 201103L
2370 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2371 typename _Compare,
typename _Alloc>
2373 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2376 if (_M_get_Node_allocator() == __x._M_get_Node_allocator())
2380 constexpr bool __move = !__move_if_noexcept_cond<value_type>::value;
2381 _Alloc_node __an(*
this);
2382 _M_root() = _M_copy<__move>(__x, __an);
2383#pragma GCC diagnostic push
2384#pragma GCC diagnostic ignored "-Wc++17-extensions"
2385 if constexpr (__move)
2387#pragma GCC diagnostic pop
2391 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2392 typename _Compare,
typename _Alloc>
2394 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2395 _M_move_assign(_Rb_tree& __x,
true_type)
2400 std::__alloc_on_move(_M_get_Node_allocator(),
2401 __x._M_get_Node_allocator());
2404 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2405 typename _Compare,
typename _Alloc>
2407 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2410 if (_M_get_Node_allocator() == __x._M_get_Node_allocator())
2411 return _M_move_assign(__x,
true_type{});
2415 _Reuse_or_alloc_node __roan(*
this);
2419 _M_root() = _M_copy<__as_rvalue>(__x, __roan);
2424 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2425 typename _Compare,
typename _Alloc>
2426 inline _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>&
2427 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2428 operator=(_Rb_tree&& __x)
2429 noexcept(_Node_alloc_traits::_S_nothrow_move()
2432 _M_impl._M_key_compare =
std::move(__x._M_impl._M_key_compare);
2434 __bool_constant<_Node_alloc_traits::_S_nothrow_move()>());
2438 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2439 typename _Compare,
typename _Alloc>
2440 template<
typename _Iterator>
2442 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2443 _M_assign_unique(_Iterator __first, _Iterator __last)
2445 _Reuse_or_alloc_node __roan(*
this);
2447 for (; __first != __last; ++__first)
2448 _M_insert_unique_(
end(), *__first, __roan);
2451 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2452 typename _Compare,
typename _Alloc>
2453 template<
typename _Iterator>
2455 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2456 _M_assign_equal(_Iterator __first, _Iterator __last)
2458 _Reuse_or_alloc_node __roan(*
this);
2460 for (; __first != __last; ++__first)
2461 _M_insert_equal_(
end(), *__first, __roan);
2465 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2466 typename _Compare,
typename _Alloc>
2467 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>&
2468 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2469 operator=(
const _Rb_tree& __x)
2474#if __cplusplus >= 201103L
2475 if (_Node_alloc_traits::_S_propagate_on_copy_assign())
2477 auto& __this_alloc = this->_M_get_Node_allocator();
2478 auto& __that_alloc = __x._M_get_Node_allocator();
2479 if (!_Node_alloc_traits::_S_always_equal()
2480 && __this_alloc != __that_alloc)
2485 std::__alloc_on_copy(__this_alloc, __that_alloc);
2490 _Reuse_or_alloc_node __roan(*
this);
2492 _M_impl._M_key_compare = __x._M_impl._M_key_compare;
2494 _M_root() = _M_copy<__as_lvalue>(__x, __roan);
2500 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2501 typename _Compare,
typename _Alloc>
2502#if __cplusplus >= 201103L
2503 template<
typename _Arg,
typename _NodeGen>
2505 template<
typename _NodeGen>
2507 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
2508 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2509 _M_insert_(_Base_ptr __x, _Base_ptr __p,
2510#
if __cplusplus >= 201103L
2515 _NodeGen& __node_gen)
2517 bool __insert_left = (__x || __p == _M_end()
2518 || _M_key_compare(_KeyOfValue()(__v),
2522 __node_gen(_GLIBCXX_FORWARD(_Arg, __v))->_M_base_ptr();
2524 _Node_traits::_S_insert_and_rebalance
2525 (__insert_left, __z, __p, this->_M_impl._M_header);
2526 ++_M_impl._M_node_count;
2530 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2531 typename _Compare,
typename _Alloc>
2532#if __cplusplus >= 201103L
2533 template<
typename _Arg>
2535 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
2536 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2537#if __cplusplus >= 201103L
2538 _M_insert_lower(_Base_ptr __p, _Arg&& __v)
2540 _M_insert_lower(_Base_ptr __p,
const _Val& __v)
2543 bool __insert_left = (__p == _M_end()
2544 || !_M_key_compare(_S_key(__p),
2545 _KeyOfValue()(__v)));
2548 _M_create_node(_GLIBCXX_FORWARD(_Arg, __v))->_M_base_ptr();
2549 _Node_traits::_S_insert_and_rebalance
2550 (__insert_left, __z, __p, this->_M_impl._M_header);
2551 ++_M_impl._M_node_count;
2555 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2556 typename _Compare,
typename _Alloc>
2557#if __cplusplus >= 201103L
2558 template<
typename _Arg>
2560 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
2561 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2562#if __cplusplus >= 201103L
2563 _M_insert_equal_lower(_Arg&& __v)
2565 _M_insert_equal_lower(
const _Val& __v)
2568 _Base_ptr __x = _M_begin();
2569 _Base_ptr __y = _M_end();
2573 __x = !_M_key_compare(_S_key(__x), _KeyOfValue()(__v)) ?
2574 _S_left(__x) : _S_right(__x);
2576 return _M_insert_lower(__y, _GLIBCXX_FORWARD(_Arg, __v));
2579 template<
typename _Key,
typename _Val,
typename _KoV,
2580 typename _Compare,
typename _Alloc>
2581 template<
bool _MoveValues,
typename _NodeGen>
2582 typename _Rb_tree<_Key, _Val, _KoV, _Compare, _Alloc>::_Base_ptr
2583 _Rb_tree<_Key, _Val, _KoV, _Compare, _Alloc>::
2584 _M_copy(_Node_ptr __x, _Base_ptr __p, _NodeGen& __node_gen)
2587 _Node_ptr __top = _M_clone_node<_MoveValues>(__x, __node_gen);
2588 _Base_ptr __top_base = __top->_M_base_ptr();
2589 __top->_M_parent = __p;
2595 _M_copy<_MoveValues>(_S_right(__x), __top_base, __node_gen);
2602 _M_clone_node<_MoveValues>(__x, __node_gen)->_M_base_ptr();
2604 __y->_M_parent = __p;
2606 __y->_M_right = _M_copy<_MoveValues>(_S_right(__x),
2615 __throw_exception_again;
2620 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2621 typename _Compare,
typename _Alloc>
2623 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2624 _M_erase(_Node_ptr __x)
2629 _M_erase(_S_right(__x));
2630 _Node_ptr __y = _S_left(__x);
2636 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2637 typename _Compare,
typename _Alloc>
2638 typename _Rb_tree<_Key, _Val, _KeyOfValue,
2639 _Compare, _Alloc>::_Base_ptr
2640 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2641 _M_lower_bound(_Base_ptr __x, _Base_ptr __y,
2642 const _Key& __k)
const
2645 if (!_M_key_compare(_S_key(__x), __k))
2646 __y = __x, __x = _S_left(__x);
2648 __x = _S_right(__x);
2652 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2653 typename _Compare,
typename _Alloc>
2654 template <
typename _Kt>
2655 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::_Base_ptr
2656 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2657 _M_lower_bound_tr(_Base_ptr __x, _Base_ptr __y,
const _Kt& __k)
const
2660 if (!_M_key_compare(_S_key(__x), __k))
2661 __y = __x, __x = _S_left(__x);
2663 __x = _S_right(__x);
2667 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2668 typename _Compare,
typename _Alloc>
2669 typename _Rb_tree<_Key, _Val, _KeyOfValue,
2670 _Compare, _Alloc>::_Base_ptr
2671 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2672 _M_upper_bound(_Base_ptr __x, _Base_ptr __y,
2673 const _Key& __k)
const
2676 if (_M_key_compare(__k, _S_key(__x)))
2677 __y = __x, __x = _S_left(__x);
2679 __x = _S_right(__x);
2683 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2684 typename _Compare,
typename _Alloc>
2685 template <
typename _Kt>
2686 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::_Base_ptr
2687 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2688 _M_upper_bound_tr(_Base_ptr __x, _Base_ptr __y,
const _Kt& __k)
const
2691 if (_M_key_compare(__k, _S_key(__x)))
2692 __y = __x, __x = _S_left(__x);
2694 __x = _S_right(__x);
2698 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2699 typename _Compare,
typename _Alloc>
2700 pair<
typename _Rb_tree<_Key, _Val, _KeyOfValue,
2701 _Compare, _Alloc>::iterator,
2702 typename _Rb_tree<_Key, _Val, _KeyOfValue,
2703 _Compare, _Alloc>::iterator>
2704 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2705 equal_range(
const _Key& __k)
2709 _Base_ptr __x = _M_begin();
2710 _Base_ptr __y = _M_end();
2713 if (_M_key_compare(_S_key(__x), __k))
2714 __x = _S_right(__x);
2715 else if (_M_key_compare(__k, _S_key(__x)))
2716 __y = __x, __x = _S_left(__x);
2719 _Base_ptr __xu(__x);
2720 _Base_ptr __yu(__y);
2721 __y = __x, __x = _S_left(__x);
2722 __xu = _S_right(__xu);
2723 return _Ret(
iterator(_M_lower_bound(__x, __y, __k)),
2724 iterator(_M_upper_bound(__xu, __yu, __k)));
2730 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2731 typename _Compare,
typename _Alloc>
2732 pair<
typename _Rb_tree<_Key, _Val, _KeyOfValue,
2733 _Compare, _Alloc>::const_iterator,
2734 typename _Rb_tree<_Key, _Val, _KeyOfValue,
2735 _Compare, _Alloc>::const_iterator>
2736 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2737 equal_range(
const _Key& __k)
const
2741 _Base_ptr __x = _M_begin();
2742 _Base_ptr __y = _M_end();
2745 if (_M_key_compare(_S_key(__x), __k))
2746 __x = _S_right(__x);
2747 else if (_M_key_compare(__k, _S_key(__x)))
2748 __y = __x, __x = _S_left(__x);
2751 _Base_ptr __xu(__x);
2752 _Base_ptr __yu(__y);
2753 __y = __x, __x = _S_left(__x);
2754 __xu = _S_right(__xu);
2755 return _Ret(const_iterator(_M_lower_bound(__x, __y, __k)),
2756 const_iterator(_M_upper_bound(__xu, __yu, __k)));
2759 return _Ret(const_iterator(__y), const_iterator(__y));
2762 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2763 typename _Compare,
typename _Alloc>
2765 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2767 _GLIBCXX_NOEXCEPT_IF(__is_nothrow_swappable<_Compare>::value)
2772 _M_impl._M_move_data(__t._M_impl);
2774 else if (!__t._M_root())
2775 __t._M_impl._M_move_data(_M_impl);
2778 std::swap(_M_root(),__t._M_root());
2779 std::swap(_M_leftmost(),__t._M_leftmost());
2780 std::swap(_M_rightmost(),__t._M_rightmost());
2782 _M_root()->_M_parent = _M_end();
2783 __t._M_root()->_M_parent = __t._M_end();
2784 std::swap(this->_M_impl._M_node_count, __t._M_impl._M_node_count);
2789 swap(this->_M_impl._M_key_compare, __t._M_impl._M_key_compare);
2791 _Node_alloc_traits::_S_on_swap(_M_get_Node_allocator(),
2792 __t._M_get_Node_allocator());
2795 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2796 typename _Compare,
typename _Alloc>
2797 pair<
typename _Rb_tree<_Key, _Val, _KeyOfValue,
2798 _Compare, _Alloc>::_Base_ptr,
2799 typename _Rb_tree<_Key, _Val, _KeyOfValue,
2800 _Compare, _Alloc>::_Base_ptr>
2801 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2802 _M_get_insert_unique_pos(
const key_type& __k)
2805 _Base_ptr __x = _M_begin();
2806 _Base_ptr __y = _M_end();
2811 __comp = _M_key_compare(__k, _S_key(__x));
2812 __x = __comp ? _S_left(__x) : _S_right(__x);
2818 return _Res(__x, __y);
2822 if (_M_key_compare(_S_key(__j._M_node), __k))
2823 return _Res(__x, __y);
2824 return _Res(__j._M_node, _Base_ptr());
2827 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2828 typename _Compare,
typename _Alloc>
2829 pair<
typename _Rb_tree<_Key, _Val, _KeyOfValue,
2830 _Compare, _Alloc>::_Base_ptr,
2831 typename _Rb_tree<_Key, _Val, _KeyOfValue,
2832 _Compare, _Alloc>::_Base_ptr>
2833 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2834 _M_get_insert_equal_pos(
const key_type& __k)
2837 _Base_ptr __x = _M_begin();
2838 _Base_ptr __y = _M_end();
2842 __x = _M_key_compare(__k, _S_key(__x)) ? _S_left(__x) : _S_right(__x);
2844 return _Res(__x, __y);
2847#ifdef __glibcxx_associative_heterogeneous_insertion
2852 template <
typename _Key,
typename _Val,
typename _KeyOfValue,
2853 typename _Compare,
typename _Alloc>
2854 template <
typename _Kt>
2856 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2857 _M_get_insert_unique_pos_tr(
const _Kt& __k)
2861 return { _M_end(), _M_end() };
2863 _Base_ptr __x = _M_begin(), __y = __x;
2864 bool __k_le_y =
false;
2868 __k_le_y = ! _M_key_compare(_S_key(__x), __k);
2869 __x = __k_le_y ? _S_left(__x) : _S_right(__x);
2882 if (__y == _M_rightmost())
2886 if (_M_key_compare(__k, _S_key(__j._M_node)))
2889 return { __y, __y };
2893 return { __j._M_node, {} };
2897 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2898 typename _Compare,
typename _Alloc>
2899#if __cplusplus >= 201103L
2900 template<
typename _Arg>
2902 pair<
typename _Rb_tree<_Key, _Val, _KeyOfValue,
2903 _Compare, _Alloc>::iterator,
bool>
2904 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2905#if __cplusplus >= 201103L
2906 _M_insert_unique(_Arg&& __v)
2908 _M_insert_unique(
const _Val& __v)
2913 = _M_get_insert_unique_pos(_KeyOfValue()(__v));
2917 _Alloc_node __an(*
this);
2918 return _Res(_M_insert_(__res.first, __res.second,
2919 _GLIBCXX_FORWARD(_Arg, __v), __an),
2923 return _Res(
iterator(__res.first),
false);
2926 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2927 typename _Compare,
typename _Alloc>
2928#if __cplusplus >= 201103L
2929 template<
typename _Arg>
2931 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
2932 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2933#if __cplusplus >= 201103L
2934 _M_insert_equal(_Arg&& __v)
2936 _M_insert_equal(
const _Val& __v)
2940 = _M_get_insert_equal_pos(_KeyOfValue()(__v));
2941 _Alloc_node __an(*
this);
2942 return _M_insert_(__res.first, __res.second,
2943 _GLIBCXX_FORWARD(_Arg, __v), __an);
2946 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
2947 typename _Compare,
typename _Alloc>
2948 pair<
typename _Rb_tree<_Key, _Val, _KeyOfValue,
2949 _Compare, _Alloc>::_Base_ptr,
2950 typename _Rb_tree<_Key, _Val, _KeyOfValue,
2951 _Compare, _Alloc>::_Base_ptr>
2952 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2953 _M_get_insert_hint_unique_pos(const_iterator __position,
2954 const key_type& __k)
2959 if (__position._M_node == _M_end())
2961 if (
size() > 0 && _M_key_compare(_S_key(_M_rightmost()), __k))
2962 return _Res(_Base_ptr(), _M_rightmost());
2964 return _M_get_insert_unique_pos(__k);
2966 else if (_M_key_compare(__k, _S_key(__position._M_node)))
2969 iterator __before(__position._M_node);
2970 if (__position._M_node == _M_leftmost())
2971 return _Res(_M_leftmost(), _M_leftmost());
2972 else if (_M_key_compare(_S_key((--__before)._M_node), __k))
2974 if (!_S_right(__before._M_node))
2975 return _Res(_Base_ptr(), __before._M_node);
2977 return _Res(__position._M_node, __position._M_node);
2980 return _M_get_insert_unique_pos(__k);
2982 else if (_M_key_compare(_S_key(__position._M_node), __k))
2985 iterator __after(__position._M_node);
2986 if (__position._M_node == _M_rightmost())
2987 return _Res(_Base_ptr(), _M_rightmost());
2988 else if (_M_key_compare(__k, _S_key((++__after)._M_node)))
2990 if (!_S_right(__position._M_node))
2991 return _Res(_Base_ptr(), __position._M_node);
2993 return _Res(__after._M_node, __after._M_node);
2996 return _M_get_insert_unique_pos(__k);
3000 return _Res(__position._M_node, _Base_ptr());
3003#ifdef __glibcxx_associative_heterogeneous_insertion
3004 template <
typename _Key,
typename _Val,
typename _KeyOfValue,
3005 typename _Compare,
typename _Alloc>
3006 template <
typename _Kt>
3008 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3009 _M_get_insert_hint_unique_pos_tr(const_iterator __hint,
const _Kt& __k)
3012 auto __node =__hint._M_node;
3013 if (__node == _M_end())
3015 if (
size() > 0 && _M_key_compare(_S_key(_M_rightmost()), __k))
3016 return { {}, _M_rightmost() };
3017 return _M_get_insert_unique_pos_tr(__k);
3019 if (_M_key_compare(__k, _S_key(__node)))
3021 if (__node == _M_leftmost())
3022 return { _M_leftmost(), _M_leftmost() };
3025 if (_M_key_compare(_S_key(__before._M_node), __k))
3027 if (!_S_right(__before._M_node))
3028 return { {}, __before._M_node };
3029 return { __node, __node };
3031 return _M_get_insert_unique_pos_tr(__k);
3033 if (_M_key_compare(_S_key(__node), __k))
3035 if (__node == _M_rightmost())
3036 return { {}, _M_rightmost() };
3039 if (_M_key_compare(__k, _S_key(__after._M_node)))
3041 if (!_S_right(__node))
3042 return { {}, __node };
3043 return { __after._M_node, __after._M_node };
3045 return _M_get_insert_unique_pos_tr(__k);
3049 if (__node == _M_leftmost() ||
3050 _M_key_compare(_S_key((--__before)._M_node), __k))
3051 {
return { __node, {} }; }
3052 return _M_get_insert_unique_pos_tr(__k);
3056 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3057 typename _Compare,
typename _Alloc>
3058#if __cplusplus >= 201103L
3059 template<
typename _Arg,
typename _NodeGen>
3061 template<
typename _NodeGen>
3063 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
3064 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3065 _M_insert_unique_(const_iterator __position,
3066#
if __cplusplus >= 201103L
3071 _NodeGen& __node_gen)
3074 = _M_get_insert_hint_unique_pos(__position, _KeyOfValue()(__v));
3077 return _M_insert_(__res.first, __res.second,
3078 _GLIBCXX_FORWARD(_Arg, __v),
3083 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3084 typename _Compare,
typename _Alloc>
3085 pair<
typename _Rb_tree<_Key, _Val, _KeyOfValue,
3086 _Compare, _Alloc>::_Base_ptr,
3087 typename _Rb_tree<_Key, _Val, _KeyOfValue,
3088 _Compare, _Alloc>::_Base_ptr>
3089 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3090 _M_get_insert_hint_equal_pos(const_iterator __position,
const key_type& __k)
3095 if (__position._M_node == _M_end())
3098 && !_M_key_compare(__k, _S_key(_M_rightmost())))
3099 return _Res(_Base_ptr(), _M_rightmost());
3101 return _M_get_insert_equal_pos(__k);
3103 else if (!_M_key_compare(_S_key(__position._M_node), __k))
3106 iterator __before(__position._M_node);
3107 if (__position._M_node == _M_leftmost())
3108 return _Res(_M_leftmost(), _M_leftmost());
3109 else if (!_M_key_compare(__k, _S_key((--__before)._M_node)))
3111 if (!_S_right(__before._M_node))
3112 return _Res(_Base_ptr(), __before._M_node);
3114 return _Res(__position._M_node, __position._M_node);
3117 return _M_get_insert_equal_pos(__k);
3122 iterator __after(__position._M_node);
3123 if (__position._M_node == _M_rightmost())
3124 return _Res(_Base_ptr(), _M_rightmost());
3125 else if (!_M_key_compare(_S_key((++__after)._M_node), __k))
3127 if (!_S_right(__position._M_node))
3128 return _Res(_Base_ptr(), __position._M_node);
3130 return _Res(__after._M_node, __after._M_node);
3133 return _Res(_Base_ptr(), _Base_ptr());
3137 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3138 typename _Compare,
typename _Alloc>
3139#if __cplusplus >= 201103L
3140 template<
typename _Arg,
typename _NodeGen>
3142 template<
typename _NodeGen>
3144 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
3145 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3146 _M_insert_equal_(const_iterator __position,
3147#
if __cplusplus >= 201103L
3152 _NodeGen& __node_gen)
3155 = _M_get_insert_hint_equal_pos(__position, _KeyOfValue()(__v));
3158 return _M_insert_(__res.first, __res.second,
3159 _GLIBCXX_FORWARD(_Arg, __v),
3162 return _M_insert_equal_lower(_GLIBCXX_FORWARD(_Arg, __v));
3165#if __cplusplus >= 201103L
3166 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3167 typename _Compare,
typename _Alloc>
3169 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3170 _M_insert_node(_Base_ptr __x, _Base_ptr __p, _Node_ptr __z)
3173 bool __insert_left = (__x || __p == _M_end()
3174 || _M_key_compare(_S_key(__z), _S_key(__p)));
3176 _Base_ptr __base_z = __z->_M_base_ptr();
3177 _Node_traits::_S_insert_and_rebalance
3178 (__insert_left, __base_z, __p, this->_M_impl._M_header);
3179 ++_M_impl._M_node_count;
3183 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3184 typename _Compare,
typename _Alloc>
3186 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3187 _M_insert_lower_node(_Base_ptr __p, _Node_ptr __z)
3190 bool __insert_left = (__p == _M_end()
3191 || !_M_key_compare(_S_key(__p), _S_key(__z)));
3193 _Base_ptr __base_z = __z->_M_base_ptr();
3194 _Node_traits::_S_insert_and_rebalance
3195 (__insert_left, __base_z, __p, this->_M_impl._M_header);
3196 ++_M_impl._M_node_count;
3200 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3201 typename _Compare,
typename _Alloc>
3203 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3204 _M_insert_equal_lower_node(_Node_ptr __z)
3207 _Base_ptr __x = _M_begin();
3208 _Base_ptr __y = _M_end();
3212 __x = !_M_key_compare(_S_key(__x), _S_key(__z)) ?
3213 _S_left(__x) : _S_right(__x);
3215 return _M_insert_lower_node(__y, __z);
3218 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3219 typename _Compare,
typename _Alloc>
3220 template<
typename... _Args>
3222 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3223 _M_emplace_unique(_Args&&... __args)
3227 auto __res = _M_get_insert_unique_pos(__z._M_key());
3229 return {__z._M_insert(__res),
true};
3230 return {
iterator(__res.first),
false};
3233 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3234 typename _Compare,
typename _Alloc>
3235 template<
typename... _Args>
3237 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3238 _M_emplace_equal(_Args&&... __args)
3242 auto __res = _M_get_insert_equal_pos(__z._M_key());
3243 return __z._M_insert(__res);
3246 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3247 typename _Compare,
typename _Alloc>
3248 template<
typename... _Args>
3250 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3251 _M_emplace_hint_unique(const_iterator __pos, _Args&&... __args)
3255 auto __res = _M_get_insert_hint_unique_pos(__pos, __z._M_key());
3257 return __z._M_insert(__res);
3261 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3262 typename _Compare,
typename _Alloc>
3263 template<
typename... _Args>
3265 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3266 _M_emplace_hint_equal(const_iterator __pos, _Args&&... __args)
3270 auto __res = _M_get_insert_hint_equal_pos(__pos, __z._M_key());
3272 return __z._M_insert(__res);
3273 return __z._M_insert_equal_lower();
3276#ifdef __glibcxx_associative_heterogeneous_insertion
3282 template <
typename _Key,
typename _Val,
typename _KeyOfValue,
3283 typename _Compare,
typename _Alloc>
3284 template <
typename... _Args>
3286 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3287 _M_emplace_here(
bool __place_left, _Base_ptr __node, _Args&&... __args)
3291 _Base_ptr __base_z = __z._M_node->_M_base_ptr();
3292 _Node_traits::_S_insert_and_rebalance(
3293 __place_left, __base_z, __node, _M_impl._M_header);
3294 __z._M_node =
nullptr;
3295 ++_M_impl._M_node_count;
3303 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3304 typename _Compare,
typename _Alloc>
3306 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3307 _M_erase_aux(const_iterator __position)
3309 _Base_ptr __y = _Node_traits::_S_rebalance_for_erase
3310 (__position._M_node, this->_M_impl._M_header);
3311 _M_drop_node(
static_cast<_Node&
>(*__y)._M_node_ptr());
3312 --_M_impl._M_node_count;
3315 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3316 typename _Compare,
typename _Alloc>
3318 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3319 _M_erase_aux(const_iterator __first, const_iterator __last)
3321 if (__first ==
begin() && __last ==
end())
3324 while (__first != __last)
3325 _M_erase_aux(__first++);
3328 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3329 typename _Compare,
typename _Alloc>
3330 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::size_type
3331 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3332 erase(
const _Key& __x)
3336 _M_erase_aux(__p.first, __p.second);
3337 return __old_size -
size();
3340 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3341 typename _Compare,
typename _Alloc>
3342 template <
typename _Kt>
3343 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::size_type
3344 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3345 _M_erase_tr(
const _Kt& __x)
3349 _M_erase_aux(__p.first, __p.second);
3350 return __old_size -
size();
3353 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3354 typename _Compare,
typename _Alloc>
3355 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::size_type
3356 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3357 _M_erase_unique(
const _Key& __x)
3367 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3368 typename _Compare,
typename _Alloc>
3369 typename _Rb_tree<_Key, _Val, _KeyOfValue,
3370 _Compare, _Alloc>::iterator
3371 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3372 find(
const _Key& __k)
3374 iterator __j(_M_lower_bound(_M_begin(), _M_end(), __k));
3375 return (__j ==
end()
3376 || _M_key_compare(__k, _S_key(__j._M_node))) ?
end() : __j;
3379 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3380 typename _Compare,
typename _Alloc>
3381 typename _Rb_tree<_Key, _Val, _KeyOfValue,
3382 _Compare, _Alloc>::const_iterator
3383 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3384 find(
const _Key& __k)
const
3386 const_iterator __j(_M_lower_bound(_M_begin(), _M_end(), __k));
3387 return (__j ==
end()
3388 || _M_key_compare(__k, _S_key(__j._M_node))) ?
end() : __j;
3391 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3392 typename _Compare,
typename _Alloc>
3393 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::size_type
3394 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
3395 count(
const _Key& __k)
const
3402 _GLIBCXX_PURE
unsigned int
3403 _Rb_tree_black_count(
const _Rb_tree_node_base* __node,
3404 const _Rb_tree_node_base* __root)
throw ();
3406 template<
typename _Key,
typename _Val,
typename _KeyOfValue,
3407 typename _Compare,
typename _Alloc>
3409 _Rb_tree<_Key,_Val,_KeyOfValue,_Compare,_Alloc>::__rb_verify()
const
3411 if (_M_impl._M_node_count == 0 ||
begin() ==
end())
3412 return _M_impl._M_node_count == 0 &&
begin() ==
end()
3413 && this->_M_impl._M_header._M_left == _M_end()
3414 && this->_M_impl._M_header._M_right == _M_end();
3416 unsigned int __len = _Rb_tree_black_count(_M_leftmost(), _M_root());
3417 for (const_iterator __it =
begin(); __it !=
end(); ++__it)
3419 _Base_ptr __x = __it._M_node;
3420 _Base_ptr __L = _S_left(__x);
3421 _Base_ptr __R = _S_right(__x);
3423 if (__x->_M_color == _S_red)
3424 if ((__L && __L->_M_color == _S_red)
3425 || (__R && __R->_M_color == _S_red))
3428 if (__L && _M_key_compare(_S_key(__x), _S_key(__L)))
3430 if (__R && _M_key_compare(_S_key(__R), _S_key(__x)))
3433 if (!__L && !__R && _Rb_tree_black_count(__x, _M_root()) != __len)
3437 if (_M_leftmost() != _Node_base::_S_minimum(_M_root()))
3439 if (_M_rightmost() != _Node_base::_S_maximum(_M_root()))
3444#ifdef __glibcxx_node_extract
3446 template<
typename _Key,
typename _Val,
typename _Sel,
typename _Cmp1,
3447 typename _Alloc,
typename _Cmp2>
3448 struct _Rb_tree_merge_helper<_Rb_tree<_Key, _Val, _Sel, _Cmp1, _Alloc>,
3452 friend class _Rb_tree<_Key, _Val, _Sel, _Cmp1, _Alloc>;
3455 _S_get_impl(_Rb_tree<_Key, _Val, _Sel, _Cmp2, _Alloc>& __tree)
3456 {
return __tree._M_impl; }
3460#ifdef __glibcxx_associative_heterogeneous_erasure
3461template <
typename _Kt,
typename _Container>
3462 concept __heterogeneous_tree_key =
3463 __transparent_comparator<typename _Container::key_compare> &&
3464 __heterogeneous_key<_Kt, _Container>;
3467_GLIBCXX_END_NAMESPACE_VERSION
constexpr bool operator<(const duration< _Rep1, _Period1 > &__lhs, const duration< _Rep2, _Period2 > &__rhs)
__bool_constant< true > true_type
The type used as a compile-time boolean with true value.
__bool_constant< false > false_type
The type used as a compile-time boolean with false value.
pair(_T1, _T2) -> pair< _T1, _T2 >
Two pairs are equal iff their members are equal.
auto declval() noexcept -> decltype(__declval< _Tp >(0))
constexpr _Tp * addressof(_Tp &__r) noexcept
Returns the actual address of the object or function referenced by r, even in the presence of an over...
constexpr std::remove_reference< _Tp >::type && move(_Tp &&__t) noexcept
Convert a value to an rvalue.
constexpr _Tp * __addressof(_Tp &__r) noexcept
Same as C++11 std::addressof.
constexpr _Tp && forward(typename std::remove_reference< _Tp >::type &__t) noexcept
Forward an lvalue.
_Tp * end(valarray< _Tp > &__va) noexcept
Return an iterator pointing to one past the last element of the valarray.
_Tp * begin(valarray< _Tp > &__va) noexcept
Return an iterator pointing to the first element of the valarray.
constexpr auto lexicographical_compare_three_way(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _Comp __comp) -> decltype(__comp(*__first1, *__first2))
Performs dictionary comparison on ranges.
ISO C++ entities toplevel namespace is std.
constexpr iterator_traits< _InputIterator >::difference_type distance(_InputIterator __first, _InputIterator __last)
A generalization of pointer arithmetic.
typename pointer_traits< _Ptr >::template rebind< _Tp > __ptr_rebind
Convenience alias for rebinding pointers.
constexpr auto size(const _Container &__cont) noexcept(noexcept(__cont.size())) -> decltype(__cont.size())
Return the size of a container.
constexpr _Iterator __base(_Iterator __it)
is_nothrow_move_assignable
The standard allocator, as per C++03 [20.4.1].
Struct holding two objects of arbitrary type.
static constexpr pointer allocate(_Node_allocator &__a, size_type __n)
static constexpr void deallocate(_Node_allocator &__a, pointer __p, size_type __n)
static constexpr size_type max_size(const _Node_allocator &__a) noexcept