]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/include/bits/stl_tree.h
PR libstdc++/87194 fix range insertion into maps and sets
[thirdparty/gcc.git] / libstdc++-v3 / include / bits / stl_tree.h
1 // RB tree implementation -*- C++ -*-
2
3 // Copyright (C) 2001-2018 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
10
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
19
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
24
25 /*
26 *
27 * Copyright (c) 1996,1997
28 * Silicon Graphics Computer Systems, Inc.
29 *
30 * Permission to use, copy, modify, distribute and sell this software
31 * and its documentation for any purpose is hereby granted without fee,
32 * provided that the above copyright notice appear in all copies and
33 * that both that copyright notice and this permission notice appear
34 * in supporting documentation. Silicon Graphics makes no
35 * representations about the suitability of this software for any
36 * purpose. It is provided "as is" without express or implied warranty.
37 *
38 *
39 * Copyright (c) 1994
40 * Hewlett-Packard Company
41 *
42 * Permission to use, copy, modify, distribute and sell this software
43 * and its documentation for any purpose is hereby granted without fee,
44 * provided that the above copyright notice appear in all copies and
45 * that both that copyright notice and this permission notice appear
46 * in supporting documentation. Hewlett-Packard Company makes no
47 * representations about the suitability of this software for any
48 * purpose. It is provided "as is" without express or implied warranty.
49 *
50 *
51 */
52
53 /** @file bits/stl_tree.h
54 * This is an internal header file, included by other library headers.
55 * Do not attempt to use it directly. @headername{map,set}
56 */
57
58 #ifndef _STL_TREE_H
59 #define _STL_TREE_H 1
60
61 #pragma GCC system_header
62
63 #include <bits/stl_algobase.h>
64 #include <bits/allocator.h>
65 #include <bits/stl_function.h>
66 #include <bits/cpp_type_traits.h>
67 #include <ext/alloc_traits.h>
68 #if __cplusplus >= 201103L
69 # include <ext/aligned_buffer.h>
70 #endif
71 #if __cplusplus > 201402L
72 # include <bits/node_handle.h>
73 #endif
74
75 namespace std _GLIBCXX_VISIBILITY(default)
76 {
77 _GLIBCXX_BEGIN_NAMESPACE_VERSION
78
79 #if __cplusplus > 201103L
80 # define __cpp_lib_generic_associative_lookup 201304
81 #endif
82
83 // Red-black tree class, designed for use in implementing STL
84 // associative containers (set, multiset, map, and multimap). The
85 // insertion and deletion algorithms are based on those in Cormen,
86 // Leiserson, and Rivest, Introduction to Algorithms (MIT Press,
87 // 1990), except that
88 //
89 // (1) the header cell is maintained with links not only to the root
90 // but also to the leftmost node of the tree, to enable constant
91 // time begin(), and to the rightmost node of the tree, to enable
92 // linear time performance when used with the generic set algorithms
93 // (set_union, etc.)
94 //
95 // (2) when a node being deleted has two children its successor node
96 // is relinked into its place, rather than copied, so that the only
97 // iterators invalidated are those referring to the deleted node.
98
99 enum _Rb_tree_color { _S_red = false, _S_black = true };
100
101 struct _Rb_tree_node_base
102 {
103 typedef _Rb_tree_node_base* _Base_ptr;
104 typedef const _Rb_tree_node_base* _Const_Base_ptr;
105
106 _Rb_tree_color _M_color;
107 _Base_ptr _M_parent;
108 _Base_ptr _M_left;
109 _Base_ptr _M_right;
110
111 static _Base_ptr
112 _S_minimum(_Base_ptr __x) _GLIBCXX_NOEXCEPT
113 {
114 while (__x->_M_left != 0) __x = __x->_M_left;
115 return __x;
116 }
117
118 static _Const_Base_ptr
119 _S_minimum(_Const_Base_ptr __x) _GLIBCXX_NOEXCEPT
120 {
121 while (__x->_M_left != 0) __x = __x->_M_left;
122 return __x;
123 }
124
125 static _Base_ptr
126 _S_maximum(_Base_ptr __x) _GLIBCXX_NOEXCEPT
127 {
128 while (__x->_M_right != 0) __x = __x->_M_right;
129 return __x;
130 }
131
132 static _Const_Base_ptr
133 _S_maximum(_Const_Base_ptr __x) _GLIBCXX_NOEXCEPT
134 {
135 while (__x->_M_right != 0) __x = __x->_M_right;
136 return __x;
137 }
138 };
139
140 // Helper type offering value initialization guarantee on the compare functor.
141 template<typename _Key_compare>
142 struct _Rb_tree_key_compare
143 {
144 _Key_compare _M_key_compare;
145
146 _Rb_tree_key_compare()
147 _GLIBCXX_NOEXCEPT_IF(
148 is_nothrow_default_constructible<_Key_compare>::value)
149 : _M_key_compare()
150 { }
151
152 _Rb_tree_key_compare(const _Key_compare& __comp)
153 : _M_key_compare(__comp)
154 { }
155
156 #if __cplusplus >= 201103L
157 // Copy constructor added for consistency with C++98 mode.
158 _Rb_tree_key_compare(const _Rb_tree_key_compare&) = default;
159
160 _Rb_tree_key_compare(_Rb_tree_key_compare&& __x)
161 noexcept(is_nothrow_copy_constructible<_Key_compare>::value)
162 : _M_key_compare(__x._M_key_compare)
163 { }
164 #endif
165 };
166
167 // Helper type to manage default initialization of node count and header.
168 struct _Rb_tree_header
169 {
170 _Rb_tree_node_base _M_header;
171 size_t _M_node_count; // Keeps track of size of tree.
172
173 _Rb_tree_header() _GLIBCXX_NOEXCEPT
174 {
175 _M_header._M_color = _S_red;
176 _M_reset();
177 }
178
179 #if __cplusplus >= 201103L
180 _Rb_tree_header(_Rb_tree_header&& __x) noexcept
181 {
182 if (__x._M_header._M_parent != nullptr)
183 _M_move_data(__x);
184 else
185 {
186 _M_header._M_color = _S_red;
187 _M_reset();
188 }
189 }
190 #endif
191
192 void
193 _M_move_data(_Rb_tree_header& __from)
194 {
195 _M_header._M_color = __from._M_header._M_color;
196 _M_header._M_parent = __from._M_header._M_parent;
197 _M_header._M_left = __from._M_header._M_left;
198 _M_header._M_right = __from._M_header._M_right;
199 _M_header._M_parent->_M_parent = &_M_header;
200 _M_node_count = __from._M_node_count;
201
202 __from._M_reset();
203 }
204
205 void
206 _M_reset()
207 {
208 _M_header._M_parent = 0;
209 _M_header._M_left = &_M_header;
210 _M_header._M_right = &_M_header;
211 _M_node_count = 0;
212 }
213 };
214
215 template<typename _Val>
216 struct _Rb_tree_node : public _Rb_tree_node_base
217 {
218 typedef _Rb_tree_node<_Val>* _Link_type;
219
220 #if __cplusplus < 201103L
221 _Val _M_value_field;
222
223 _Val*
224 _M_valptr()
225 { return std::__addressof(_M_value_field); }
226
227 const _Val*
228 _M_valptr() const
229 { return std::__addressof(_M_value_field); }
230 #else
231 __gnu_cxx::__aligned_membuf<_Val> _M_storage;
232
233 _Val*
234 _M_valptr()
235 { return _M_storage._M_ptr(); }
236
237 const _Val*
238 _M_valptr() const
239 { return _M_storage._M_ptr(); }
240 #endif
241 };
242
243 _GLIBCXX_PURE _Rb_tree_node_base*
244 _Rb_tree_increment(_Rb_tree_node_base* __x) throw ();
245
246 _GLIBCXX_PURE const _Rb_tree_node_base*
247 _Rb_tree_increment(const _Rb_tree_node_base* __x) throw ();
248
249 _GLIBCXX_PURE _Rb_tree_node_base*
250 _Rb_tree_decrement(_Rb_tree_node_base* __x) throw ();
251
252 _GLIBCXX_PURE const _Rb_tree_node_base*
253 _Rb_tree_decrement(const _Rb_tree_node_base* __x) throw ();
254
255 template<typename _Tp>
256 struct _Rb_tree_iterator
257 {
258 typedef _Tp value_type;
259 typedef _Tp& reference;
260 typedef _Tp* pointer;
261
262 typedef bidirectional_iterator_tag iterator_category;
263 typedef ptrdiff_t difference_type;
264
265 typedef _Rb_tree_iterator<_Tp> _Self;
266 typedef _Rb_tree_node_base::_Base_ptr _Base_ptr;
267 typedef _Rb_tree_node<_Tp>* _Link_type;
268
269 _Rb_tree_iterator() _GLIBCXX_NOEXCEPT
270 : _M_node() { }
271
272 explicit
273 _Rb_tree_iterator(_Base_ptr __x) _GLIBCXX_NOEXCEPT
274 : _M_node(__x) { }
275
276 reference
277 operator*() const _GLIBCXX_NOEXCEPT
278 { return *static_cast<_Link_type>(_M_node)->_M_valptr(); }
279
280 pointer
281 operator->() const _GLIBCXX_NOEXCEPT
282 { return static_cast<_Link_type> (_M_node)->_M_valptr(); }
283
284 _Self&
285 operator++() _GLIBCXX_NOEXCEPT
286 {
287 _M_node = _Rb_tree_increment(_M_node);
288 return *this;
289 }
290
291 _Self
292 operator++(int) _GLIBCXX_NOEXCEPT
293 {
294 _Self __tmp = *this;
295 _M_node = _Rb_tree_increment(_M_node);
296 return __tmp;
297 }
298
299 _Self&
300 operator--() _GLIBCXX_NOEXCEPT
301 {
302 _M_node = _Rb_tree_decrement(_M_node);
303 return *this;
304 }
305
306 _Self
307 operator--(int) _GLIBCXX_NOEXCEPT
308 {
309 _Self __tmp = *this;
310 _M_node = _Rb_tree_decrement(_M_node);
311 return __tmp;
312 }
313
314 bool
315 operator==(const _Self& __x) const _GLIBCXX_NOEXCEPT
316 { return _M_node == __x._M_node; }
317
318 bool
319 operator!=(const _Self& __x) const _GLIBCXX_NOEXCEPT
320 { return _M_node != __x._M_node; }
321
322 _Base_ptr _M_node;
323 };
324
325 template<typename _Tp>
326 struct _Rb_tree_const_iterator
327 {
328 typedef _Tp value_type;
329 typedef const _Tp& reference;
330 typedef const _Tp* pointer;
331
332 typedef _Rb_tree_iterator<_Tp> iterator;
333
334 typedef bidirectional_iterator_tag iterator_category;
335 typedef ptrdiff_t difference_type;
336
337 typedef _Rb_tree_const_iterator<_Tp> _Self;
338 typedef _Rb_tree_node_base::_Const_Base_ptr _Base_ptr;
339 typedef const _Rb_tree_node<_Tp>* _Link_type;
340
341 _Rb_tree_const_iterator() _GLIBCXX_NOEXCEPT
342 : _M_node() { }
343
344 explicit
345 _Rb_tree_const_iterator(_Base_ptr __x) _GLIBCXX_NOEXCEPT
346 : _M_node(__x) { }
347
348 _Rb_tree_const_iterator(const iterator& __it) _GLIBCXX_NOEXCEPT
349 : _M_node(__it._M_node) { }
350
351 iterator
352 _M_const_cast() const _GLIBCXX_NOEXCEPT
353 { return iterator(const_cast<typename iterator::_Base_ptr>(_M_node)); }
354
355 reference
356 operator*() const _GLIBCXX_NOEXCEPT
357 { return *static_cast<_Link_type>(_M_node)->_M_valptr(); }
358
359 pointer
360 operator->() const _GLIBCXX_NOEXCEPT
361 { return static_cast<_Link_type>(_M_node)->_M_valptr(); }
362
363 _Self&
364 operator++() _GLIBCXX_NOEXCEPT
365 {
366 _M_node = _Rb_tree_increment(_M_node);
367 return *this;
368 }
369
370 _Self
371 operator++(int) _GLIBCXX_NOEXCEPT
372 {
373 _Self __tmp = *this;
374 _M_node = _Rb_tree_increment(_M_node);
375 return __tmp;
376 }
377
378 _Self&
379 operator--() _GLIBCXX_NOEXCEPT
380 {
381 _M_node = _Rb_tree_decrement(_M_node);
382 return *this;
383 }
384
385 _Self
386 operator--(int) _GLIBCXX_NOEXCEPT
387 {
388 _Self __tmp = *this;
389 _M_node = _Rb_tree_decrement(_M_node);
390 return __tmp;
391 }
392
393 bool
394 operator==(const _Self& __x) const _GLIBCXX_NOEXCEPT
395 { return _M_node == __x._M_node; }
396
397 bool
398 operator!=(const _Self& __x) const _GLIBCXX_NOEXCEPT
399 { return _M_node != __x._M_node; }
400
401 _Base_ptr _M_node;
402 };
403
404 template<typename _Val>
405 inline bool
406 operator==(const _Rb_tree_iterator<_Val>& __x,
407 const _Rb_tree_const_iterator<_Val>& __y) _GLIBCXX_NOEXCEPT
408 { return __x._M_node == __y._M_node; }
409
410 template<typename _Val>
411 inline bool
412 operator!=(const _Rb_tree_iterator<_Val>& __x,
413 const _Rb_tree_const_iterator<_Val>& __y) _GLIBCXX_NOEXCEPT
414 { return __x._M_node != __y._M_node; }
415
416 void
417 _Rb_tree_insert_and_rebalance(const bool __insert_left,
418 _Rb_tree_node_base* __x,
419 _Rb_tree_node_base* __p,
420 _Rb_tree_node_base& __header) throw ();
421
422 _Rb_tree_node_base*
423 _Rb_tree_rebalance_for_erase(_Rb_tree_node_base* const __z,
424 _Rb_tree_node_base& __header) throw ();
425
426 #if __cplusplus >= 201402L
427 template<typename _Cmp, typename _SfinaeType, typename = __void_t<>>
428 struct __has_is_transparent
429 { };
430
431 template<typename _Cmp, typename _SfinaeType>
432 struct __has_is_transparent<_Cmp, _SfinaeType,
433 __void_t<typename _Cmp::is_transparent>>
434 { typedef void type; };
435
436 template<typename _Cmp, typename _SfinaeType>
437 using __has_is_transparent_t
438 = typename __has_is_transparent<_Cmp, _SfinaeType>::type;
439 #endif
440
441 #if __cplusplus > 201402L
442 template<typename _Tree1, typename _Cmp2>
443 struct _Rb_tree_merge_helper { };
444 #endif
445
446 template<typename _Key, typename _Val, typename _KeyOfValue,
447 typename _Compare, typename _Alloc = allocator<_Val> >
448 class _Rb_tree
449 {
450 typedef typename __gnu_cxx::__alloc_traits<_Alloc>::template
451 rebind<_Rb_tree_node<_Val> >::other _Node_allocator;
452
453 typedef __gnu_cxx::__alloc_traits<_Node_allocator> _Alloc_traits;
454
455 #if __cplusplus >= 201103L
456 static_assert(__is_invocable<_Compare&, const _Key&, const _Key&>{},
457 "comparison object must be invocable with two arguments of key type");
458 # if __cplusplus >= 201703L
459 // _GLIBCXX_RESOLVE_LIB_DEFECTS
460 // 2542. Missing const requirements for associative containers
461 static_assert(is_invocable_v<const _Compare&, const _Key&, const _Key&>,
462 "comparison object must be invocable as const");
463 # endif // C++17
464 #endif // C++11
465
466 protected:
467 typedef _Rb_tree_node_base* _Base_ptr;
468 typedef const _Rb_tree_node_base* _Const_Base_ptr;
469 typedef _Rb_tree_node<_Val>* _Link_type;
470 typedef const _Rb_tree_node<_Val>* _Const_Link_type;
471
472 private:
473 // Functor recycling a pool of nodes and using allocation once the pool
474 // is empty.
475 struct _Reuse_or_alloc_node
476 {
477 _Reuse_or_alloc_node(_Rb_tree& __t)
478 : _M_root(__t._M_root()), _M_nodes(__t._M_rightmost()), _M_t(__t)
479 {
480 if (_M_root)
481 {
482 _M_root->_M_parent = 0;
483
484 if (_M_nodes->_M_left)
485 _M_nodes = _M_nodes->_M_left;
486 }
487 else
488 _M_nodes = 0;
489 }
490
491 #if __cplusplus >= 201103L
492 _Reuse_or_alloc_node(const _Reuse_or_alloc_node&) = delete;
493 #endif
494
495 ~_Reuse_or_alloc_node()
496 { _M_t._M_erase(static_cast<_Link_type>(_M_root)); }
497
498 template<typename _Arg>
499 _Link_type
500 #if __cplusplus < 201103L
501 operator()(const _Arg& __arg)
502 #else
503 operator()(_Arg&& __arg)
504 #endif
505 {
506 _Link_type __node = static_cast<_Link_type>(_M_extract());
507 if (__node)
508 {
509 _M_t._M_destroy_node(__node);
510 _M_t._M_construct_node(__node, _GLIBCXX_FORWARD(_Arg, __arg));
511 return __node;
512 }
513
514 return _M_t._M_create_node(_GLIBCXX_FORWARD(_Arg, __arg));
515 }
516
517 private:
518 _Base_ptr
519 _M_extract()
520 {
521 if (!_M_nodes)
522 return _M_nodes;
523
524 _Base_ptr __node = _M_nodes;
525 _M_nodes = _M_nodes->_M_parent;
526 if (_M_nodes)
527 {
528 if (_M_nodes->_M_right == __node)
529 {
530 _M_nodes->_M_right = 0;
531
532 if (_M_nodes->_M_left)
533 {
534 _M_nodes = _M_nodes->_M_left;
535
536 while (_M_nodes->_M_right)
537 _M_nodes = _M_nodes->_M_right;
538
539 if (_M_nodes->_M_left)
540 _M_nodes = _M_nodes->_M_left;
541 }
542 }
543 else // __node is on the left.
544 _M_nodes->_M_left = 0;
545 }
546 else
547 _M_root = 0;
548
549 return __node;
550 }
551
552 _Base_ptr _M_root;
553 _Base_ptr _M_nodes;
554 _Rb_tree& _M_t;
555 };
556
557 // Functor similar to the previous one but without any pool of nodes to
558 // recycle.
559 struct _Alloc_node
560 {
561 _Alloc_node(_Rb_tree& __t)
562 : _M_t(__t) { }
563
564 template<typename _Arg>
565 _Link_type
566 #if __cplusplus < 201103L
567 operator()(const _Arg& __arg) const
568 #else
569 operator()(_Arg&& __arg) const
570 #endif
571 { return _M_t._M_create_node(_GLIBCXX_FORWARD(_Arg, __arg)); }
572
573 private:
574 _Rb_tree& _M_t;
575 };
576
577 public:
578 typedef _Key key_type;
579 typedef _Val value_type;
580 typedef value_type* pointer;
581 typedef const value_type* const_pointer;
582 typedef value_type& reference;
583 typedef const value_type& const_reference;
584 typedef size_t size_type;
585 typedef ptrdiff_t difference_type;
586 typedef _Alloc allocator_type;
587
588 _Node_allocator&
589 _M_get_Node_allocator() _GLIBCXX_NOEXCEPT
590 { return this->_M_impl; }
591
592 const _Node_allocator&
593 _M_get_Node_allocator() const _GLIBCXX_NOEXCEPT
594 { return this->_M_impl; }
595
596 allocator_type
597 get_allocator() const _GLIBCXX_NOEXCEPT
598 { return allocator_type(_M_get_Node_allocator()); }
599
600 protected:
601 _Link_type
602 _M_get_node()
603 { return _Alloc_traits::allocate(_M_get_Node_allocator(), 1); }
604
605 void
606 _M_put_node(_Link_type __p) _GLIBCXX_NOEXCEPT
607 { _Alloc_traits::deallocate(_M_get_Node_allocator(), __p, 1); }
608
609 #if __cplusplus < 201103L
610 void
611 _M_construct_node(_Link_type __node, const value_type& __x)
612 {
613 __try
614 { get_allocator().construct(__node->_M_valptr(), __x); }
615 __catch(...)
616 {
617 _M_put_node(__node);
618 __throw_exception_again;
619 }
620 }
621
622 _Link_type
623 _M_create_node(const value_type& __x)
624 {
625 _Link_type __tmp = _M_get_node();
626 _M_construct_node(__tmp, __x);
627 return __tmp;
628 }
629 #else
630 template<typename... _Args>
631 void
632 _M_construct_node(_Link_type __node, _Args&&... __args)
633 {
634 __try
635 {
636 ::new(__node) _Rb_tree_node<_Val>;
637 _Alloc_traits::construct(_M_get_Node_allocator(),
638 __node->_M_valptr(),
639 std::forward<_Args>(__args)...);
640 }
641 __catch(...)
642 {
643 __node->~_Rb_tree_node<_Val>();
644 _M_put_node(__node);
645 __throw_exception_again;
646 }
647 }
648
649 template<typename... _Args>
650 _Link_type
651 _M_create_node(_Args&&... __args)
652 {
653 _Link_type __tmp = _M_get_node();
654 _M_construct_node(__tmp, std::forward<_Args>(__args)...);
655 return __tmp;
656 }
657 #endif
658
659 void
660 _M_destroy_node(_Link_type __p) _GLIBCXX_NOEXCEPT
661 {
662 #if __cplusplus < 201103L
663 get_allocator().destroy(__p->_M_valptr());
664 #else
665 _Alloc_traits::destroy(_M_get_Node_allocator(), __p->_M_valptr());
666 __p->~_Rb_tree_node<_Val>();
667 #endif
668 }
669
670 void
671 _M_drop_node(_Link_type __p) _GLIBCXX_NOEXCEPT
672 {
673 _M_destroy_node(__p);
674 _M_put_node(__p);
675 }
676
677 template<typename _NodeGen>
678 _Link_type
679 _M_clone_node(_Const_Link_type __x, _NodeGen& __node_gen)
680 {
681 _Link_type __tmp = __node_gen(*__x->_M_valptr());
682 __tmp->_M_color = __x->_M_color;
683 __tmp->_M_left = 0;
684 __tmp->_M_right = 0;
685 return __tmp;
686 }
687
688 protected:
689 #if _GLIBCXX_INLINE_VERSION
690 template<typename _Key_compare>
691 #else
692 // Unused _Is_pod_comparator is kept as it is part of mangled name.
693 template<typename _Key_compare,
694 bool /* _Is_pod_comparator */ = __is_pod(_Key_compare)>
695 #endif
696 struct _Rb_tree_impl
697 : public _Node_allocator
698 , public _Rb_tree_key_compare<_Key_compare>
699 , public _Rb_tree_header
700 {
701 typedef _Rb_tree_key_compare<_Key_compare> _Base_key_compare;
702
703 _Rb_tree_impl()
704 _GLIBCXX_NOEXCEPT_IF(
705 is_nothrow_default_constructible<_Node_allocator>::value
706 && is_nothrow_default_constructible<_Base_key_compare>::value )
707 : _Node_allocator()
708 { }
709
710 _Rb_tree_impl(const _Rb_tree_impl& __x)
711 : _Node_allocator(_Alloc_traits::_S_select_on_copy(__x))
712 , _Base_key_compare(__x._M_key_compare)
713 { }
714
715 #if __cplusplus < 201103L
716 _Rb_tree_impl(const _Key_compare& __comp, const _Node_allocator& __a)
717 : _Node_allocator(__a), _Base_key_compare(__comp)
718 { }
719 #else
720 _Rb_tree_impl(_Rb_tree_impl&&) = default;
721
722 explicit
723 _Rb_tree_impl(_Node_allocator&& __a)
724 : _Node_allocator(std::move(__a))
725 { }
726
727 _Rb_tree_impl(_Rb_tree_impl&& __x, _Node_allocator&& __a)
728 : _Node_allocator(std::move(__a)),
729 _Base_key_compare(std::move(__x)),
730 _Rb_tree_header(std::move(__x))
731 { }
732
733 _Rb_tree_impl(const _Key_compare& __comp, _Node_allocator&& __a)
734 : _Node_allocator(std::move(__a)), _Base_key_compare(__comp)
735 { }
736 #endif
737 };
738
739 _Rb_tree_impl<_Compare> _M_impl;
740
741 protected:
742 _Base_ptr&
743 _M_root() _GLIBCXX_NOEXCEPT
744 { return this->_M_impl._M_header._M_parent; }
745
746 _Const_Base_ptr
747 _M_root() const _GLIBCXX_NOEXCEPT
748 { return this->_M_impl._M_header._M_parent; }
749
750 _Base_ptr&
751 _M_leftmost() _GLIBCXX_NOEXCEPT
752 { return this->_M_impl._M_header._M_left; }
753
754 _Const_Base_ptr
755 _M_leftmost() const _GLIBCXX_NOEXCEPT
756 { return this->_M_impl._M_header._M_left; }
757
758 _Base_ptr&
759 _M_rightmost() _GLIBCXX_NOEXCEPT
760 { return this->_M_impl._M_header._M_right; }
761
762 _Const_Base_ptr
763 _M_rightmost() const _GLIBCXX_NOEXCEPT
764 { return this->_M_impl._M_header._M_right; }
765
766 _Link_type
767 _M_begin() _GLIBCXX_NOEXCEPT
768 { return static_cast<_Link_type>(this->_M_impl._M_header._M_parent); }
769
770 _Const_Link_type
771 _M_begin() const _GLIBCXX_NOEXCEPT
772 {
773 return static_cast<_Const_Link_type>
774 (this->_M_impl._M_header._M_parent);
775 }
776
777 _Base_ptr
778 _M_end() _GLIBCXX_NOEXCEPT
779 { return &this->_M_impl._M_header; }
780
781 _Const_Base_ptr
782 _M_end() const _GLIBCXX_NOEXCEPT
783 { return &this->_M_impl._M_header; }
784
785 static const_reference
786 _S_value(_Const_Link_type __x)
787 { return *__x->_M_valptr(); }
788
789 static const _Key&
790 _S_key(_Const_Link_type __x)
791 { return _KeyOfValue()(_S_value(__x)); }
792
793 static _Link_type
794 _S_left(_Base_ptr __x) _GLIBCXX_NOEXCEPT
795 { return static_cast<_Link_type>(__x->_M_left); }
796
797 static _Const_Link_type
798 _S_left(_Const_Base_ptr __x) _GLIBCXX_NOEXCEPT
799 { return static_cast<_Const_Link_type>(__x->_M_left); }
800
801 static _Link_type
802 _S_right(_Base_ptr __x) _GLIBCXX_NOEXCEPT
803 { return static_cast<_Link_type>(__x->_M_right); }
804
805 static _Const_Link_type
806 _S_right(_Const_Base_ptr __x) _GLIBCXX_NOEXCEPT
807 { return static_cast<_Const_Link_type>(__x->_M_right); }
808
809 static const_reference
810 _S_value(_Const_Base_ptr __x)
811 { return *static_cast<_Const_Link_type>(__x)->_M_valptr(); }
812
813 static const _Key&
814 _S_key(_Const_Base_ptr __x)
815 { return _KeyOfValue()(_S_value(__x)); }
816
817 static _Base_ptr
818 _S_minimum(_Base_ptr __x) _GLIBCXX_NOEXCEPT
819 { return _Rb_tree_node_base::_S_minimum(__x); }
820
821 static _Const_Base_ptr
822 _S_minimum(_Const_Base_ptr __x) _GLIBCXX_NOEXCEPT
823 { return _Rb_tree_node_base::_S_minimum(__x); }
824
825 static _Base_ptr
826 _S_maximum(_Base_ptr __x) _GLIBCXX_NOEXCEPT
827 { return _Rb_tree_node_base::_S_maximum(__x); }
828
829 static _Const_Base_ptr
830 _S_maximum(_Const_Base_ptr __x) _GLIBCXX_NOEXCEPT
831 { return _Rb_tree_node_base::_S_maximum(__x); }
832
833 public:
834 typedef _Rb_tree_iterator<value_type> iterator;
835 typedef _Rb_tree_const_iterator<value_type> const_iterator;
836
837 typedef std::reverse_iterator<iterator> reverse_iterator;
838 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
839
840 #if __cplusplus > 201402L
841 using node_type = _Node_handle<_Key, _Val, _Node_allocator>;
842 using insert_return_type = _Node_insert_return<
843 conditional_t<is_same_v<_Key, _Val>, const_iterator, iterator>,
844 node_type>;
845 #endif
846
847 pair<_Base_ptr, _Base_ptr>
848 _M_get_insert_unique_pos(const key_type& __k);
849
850 pair<_Base_ptr, _Base_ptr>
851 _M_get_insert_equal_pos(const key_type& __k);
852
853 pair<_Base_ptr, _Base_ptr>
854 _M_get_insert_hint_unique_pos(const_iterator __pos,
855 const key_type& __k);
856
857 pair<_Base_ptr, _Base_ptr>
858 _M_get_insert_hint_equal_pos(const_iterator __pos,
859 const key_type& __k);
860
861 private:
862 #if __cplusplus >= 201103L
863 template<typename _Arg, typename _NodeGen>
864 iterator
865 _M_insert_(_Base_ptr __x, _Base_ptr __y, _Arg&& __v, _NodeGen&);
866
867 iterator
868 _M_insert_node(_Base_ptr __x, _Base_ptr __y, _Link_type __z);
869
870 template<typename _Arg>
871 iterator
872 _M_insert_lower(_Base_ptr __y, _Arg&& __v);
873
874 template<typename _Arg>
875 iterator
876 _M_insert_equal_lower(_Arg&& __x);
877
878 iterator
879 _M_insert_lower_node(_Base_ptr __p, _Link_type __z);
880
881 iterator
882 _M_insert_equal_lower_node(_Link_type __z);
883 #else
884 template<typename _NodeGen>
885 iterator
886 _M_insert_(_Base_ptr __x, _Base_ptr __y,
887 const value_type& __v, _NodeGen&);
888
889 // _GLIBCXX_RESOLVE_LIB_DEFECTS
890 // 233. Insertion hints in associative containers.
891 iterator
892 _M_insert_lower(_Base_ptr __y, const value_type& __v);
893
894 iterator
895 _M_insert_equal_lower(const value_type& __x);
896 #endif
897
898 template<typename _NodeGen>
899 _Link_type
900 _M_copy(_Const_Link_type __x, _Base_ptr __p, _NodeGen&);
901
902 template<typename _NodeGen>
903 _Link_type
904 _M_copy(const _Rb_tree& __x, _NodeGen& __gen)
905 {
906 _Link_type __root = _M_copy(__x._M_begin(), _M_end(), __gen);
907 _M_leftmost() = _S_minimum(__root);
908 _M_rightmost() = _S_maximum(__root);
909 _M_impl._M_node_count = __x._M_impl._M_node_count;
910 return __root;
911 }
912
913 _Link_type
914 _M_copy(const _Rb_tree& __x)
915 {
916 _Alloc_node __an(*this);
917 return _M_copy(__x, __an);
918 }
919
920 void
921 _M_erase(_Link_type __x);
922
923 iterator
924 _M_lower_bound(_Link_type __x, _Base_ptr __y,
925 const _Key& __k);
926
927 const_iterator
928 _M_lower_bound(_Const_Link_type __x, _Const_Base_ptr __y,
929 const _Key& __k) const;
930
931 iterator
932 _M_upper_bound(_Link_type __x, _Base_ptr __y,
933 const _Key& __k);
934
935 const_iterator
936 _M_upper_bound(_Const_Link_type __x, _Const_Base_ptr __y,
937 const _Key& __k) const;
938
939 public:
940 // allocation/deallocation
941 #if __cplusplus < 201103L
942 _Rb_tree() { }
943 #else
944 _Rb_tree() = default;
945 #endif
946
947 _Rb_tree(const _Compare& __comp,
948 const allocator_type& __a = allocator_type())
949 : _M_impl(__comp, _Node_allocator(__a)) { }
950
951 _Rb_tree(const _Rb_tree& __x)
952 : _M_impl(__x._M_impl)
953 {
954 if (__x._M_root() != 0)
955 _M_root() = _M_copy(__x);
956 }
957
958 #if __cplusplus >= 201103L
959 _Rb_tree(const allocator_type& __a)
960 : _M_impl(_Node_allocator(__a))
961 { }
962
963 _Rb_tree(const _Rb_tree& __x, const allocator_type& __a)
964 : _M_impl(__x._M_impl._M_key_compare, _Node_allocator(__a))
965 {
966 if (__x._M_root() != nullptr)
967 _M_root() = _M_copy(__x);
968 }
969
970 _Rb_tree(_Rb_tree&&) = default;
971
972 _Rb_tree(_Rb_tree&& __x, const allocator_type& __a)
973 : _Rb_tree(std::move(__x), _Node_allocator(__a))
974 { }
975
976 private:
977 _Rb_tree(_Rb_tree&& __x, _Node_allocator&& __a, true_type)
978 noexcept(is_nothrow_default_constructible<_Compare>::value)
979 : _M_impl(std::move(__x._M_impl), std::move(__a))
980 { }
981
982 _Rb_tree(_Rb_tree&& __x, _Node_allocator&& __a, false_type)
983 : _M_impl(__x._M_impl._M_key_compare, std::move(__a))
984 {
985 if (__x._M_root() != nullptr)
986 _M_move_data(__x, false_type{});
987 }
988
989 public:
990 _Rb_tree(_Rb_tree&& __x, _Node_allocator&& __a)
991 noexcept( noexcept(
992 _Rb_tree(std::declval<_Rb_tree&&>(), std::declval<_Node_allocator&&>(),
993 std::declval<typename _Alloc_traits::is_always_equal>())) )
994 : _Rb_tree(std::move(__x), std::move(__a),
995 typename _Alloc_traits::is_always_equal{})
996 { }
997 #endif
998
999 ~_Rb_tree() _GLIBCXX_NOEXCEPT
1000 { _M_erase(_M_begin()); }
1001
1002 _Rb_tree&
1003 operator=(const _Rb_tree& __x);
1004
1005 // Accessors.
1006 _Compare
1007 key_comp() const
1008 { return _M_impl._M_key_compare; }
1009
1010 iterator
1011 begin() _GLIBCXX_NOEXCEPT
1012 { return iterator(this->_M_impl._M_header._M_left); }
1013
1014 const_iterator
1015 begin() const _GLIBCXX_NOEXCEPT
1016 { return const_iterator(this->_M_impl._M_header._M_left); }
1017
1018 iterator
1019 end() _GLIBCXX_NOEXCEPT
1020 { return iterator(&this->_M_impl._M_header); }
1021
1022 const_iterator
1023 end() const _GLIBCXX_NOEXCEPT
1024 { return const_iterator(&this->_M_impl._M_header); }
1025
1026 reverse_iterator
1027 rbegin() _GLIBCXX_NOEXCEPT
1028 { return reverse_iterator(end()); }
1029
1030 const_reverse_iterator
1031 rbegin() const _GLIBCXX_NOEXCEPT
1032 { return const_reverse_iterator(end()); }
1033
1034 reverse_iterator
1035 rend() _GLIBCXX_NOEXCEPT
1036 { return reverse_iterator(begin()); }
1037
1038 const_reverse_iterator
1039 rend() const _GLIBCXX_NOEXCEPT
1040 { return const_reverse_iterator(begin()); }
1041
1042 bool
1043 empty() const _GLIBCXX_NOEXCEPT
1044 { return _M_impl._M_node_count == 0; }
1045
1046 size_type
1047 size() const _GLIBCXX_NOEXCEPT
1048 { return _M_impl._M_node_count; }
1049
1050 size_type
1051 max_size() const _GLIBCXX_NOEXCEPT
1052 { return _Alloc_traits::max_size(_M_get_Node_allocator()); }
1053
1054 void
1055 swap(_Rb_tree& __t)
1056 _GLIBCXX_NOEXCEPT_IF(__is_nothrow_swappable<_Compare>::value);
1057
1058 // Insert/erase.
1059 #if __cplusplus >= 201103L
1060 template<typename _Arg>
1061 pair<iterator, bool>
1062 _M_insert_unique(_Arg&& __x);
1063
1064 template<typename _Arg>
1065 iterator
1066 _M_insert_equal(_Arg&& __x);
1067
1068 template<typename _Arg, typename _NodeGen>
1069 iterator
1070 _M_insert_unique_(const_iterator __pos, _Arg&& __x, _NodeGen&);
1071
1072 template<typename _Arg>
1073 iterator
1074 _M_insert_unique_(const_iterator __pos, _Arg&& __x)
1075 {
1076 _Alloc_node __an(*this);
1077 return _M_insert_unique_(__pos, std::forward<_Arg>(__x), __an);
1078 }
1079
1080 template<typename _Arg, typename _NodeGen>
1081 iterator
1082 _M_insert_equal_(const_iterator __pos, _Arg&& __x, _NodeGen&);
1083
1084 template<typename _Arg>
1085 iterator
1086 _M_insert_equal_(const_iterator __pos, _Arg&& __x)
1087 {
1088 _Alloc_node __an(*this);
1089 return _M_insert_equal_(__pos, std::forward<_Arg>(__x), __an);
1090 }
1091
1092 template<typename... _Args>
1093 pair<iterator, bool>
1094 _M_emplace_unique(_Args&&... __args);
1095
1096 template<typename... _Args>
1097 iterator
1098 _M_emplace_equal(_Args&&... __args);
1099
1100 template<typename... _Args>
1101 iterator
1102 _M_emplace_hint_unique(const_iterator __pos, _Args&&... __args);
1103
1104 template<typename... _Args>
1105 iterator
1106 _M_emplace_hint_equal(const_iterator __pos, _Args&&... __args);
1107
1108 template<typename _Iter>
1109 using __same_value_type
1110 = is_same<value_type, typename iterator_traits<_Iter>::value_type>;
1111
1112 template<typename _InputIterator>
1113 __enable_if_t<__same_value_type<_InputIterator>::value>
1114 _M_insert_range_unique(_InputIterator __first, _InputIterator __last)
1115 {
1116 _Alloc_node __an(*this);
1117 for (; __first != __last; ++__first)
1118 _M_insert_unique_(end(), *__first, __an);
1119 }
1120
1121 template<typename _InputIterator>
1122 __enable_if_t<!__same_value_type<_InputIterator>::value>
1123 _M_insert_range_unique(_InputIterator __first, _InputIterator __last)
1124 {
1125 for (; __first != __last; ++__first)
1126 _M_emplace_unique(*__first);
1127 }
1128
1129 template<typename _InputIterator>
1130 __enable_if_t<__same_value_type<_InputIterator>::value>
1131 _M_insert_range_equal(_InputIterator __first, _InputIterator __last)
1132 {
1133 _Alloc_node __an(*this);
1134 for (; __first != __last; ++__first)
1135 _M_insert_equal_(end(), *__first, __an);
1136 }
1137
1138 template<typename _InputIterator>
1139 __enable_if_t<!__same_value_type<_InputIterator>::value>
1140 _M_insert_range_equal(_InputIterator __first, _InputIterator __last)
1141 {
1142 _Alloc_node __an(*this);
1143 for (; __first != __last; ++__first)
1144 _M_emplace_equal(*__first);
1145 }
1146 #else
1147 pair<iterator, bool>
1148 _M_insert_unique(const value_type& __x);
1149
1150 iterator
1151 _M_insert_equal(const value_type& __x);
1152
1153 template<typename _NodeGen>
1154 iterator
1155 _M_insert_unique_(const_iterator __pos, const value_type& __x,
1156 _NodeGen&);
1157
1158 iterator
1159 _M_insert_unique_(const_iterator __pos, const value_type& __x)
1160 {
1161 _Alloc_node __an(*this);
1162 return _M_insert_unique_(__pos, __x, __an);
1163 }
1164
1165 template<typename _NodeGen>
1166 iterator
1167 _M_insert_equal_(const_iterator __pos, const value_type& __x,
1168 _NodeGen&);
1169 iterator
1170 _M_insert_equal_(const_iterator __pos, const value_type& __x)
1171 {
1172 _Alloc_node __an(*this);
1173 return _M_insert_equal_(__pos, __x, __an);
1174 }
1175
1176 template<typename _InputIterator>
1177 void
1178 _M_insert_range_unique(_InputIterator __first, _InputIterator __last)
1179 {
1180 _Alloc_node __an(*this);
1181 for (; __first != __last; ++__first)
1182 _M_insert_unique_(end(), *__first, __an);
1183 }
1184
1185 template<typename _InputIterator>
1186 void
1187 _M_insert_range_equal(_InputIterator __first, _InputIterator __last)
1188 {
1189 _Alloc_node __an(*this);
1190 for (; __first != __last; ++__first)
1191 _M_insert_equal_(end(), *__first, __an);
1192 }
1193 #endif
1194
1195 private:
1196 void
1197 _M_erase_aux(const_iterator __position);
1198
1199 void
1200 _M_erase_aux(const_iterator __first, const_iterator __last);
1201
1202 public:
1203 #if __cplusplus >= 201103L
1204 // _GLIBCXX_RESOLVE_LIB_DEFECTS
1205 // DR 130. Associative erase should return an iterator.
1206 _GLIBCXX_ABI_TAG_CXX11
1207 iterator
1208 erase(const_iterator __position)
1209 {
1210 __glibcxx_assert(__position != end());
1211 const_iterator __result = __position;
1212 ++__result;
1213 _M_erase_aux(__position);
1214 return __result._M_const_cast();
1215 }
1216
1217 // LWG 2059.
1218 _GLIBCXX_ABI_TAG_CXX11
1219 iterator
1220 erase(iterator __position)
1221 {
1222 __glibcxx_assert(__position != end());
1223 iterator __result = __position;
1224 ++__result;
1225 _M_erase_aux(__position);
1226 return __result;
1227 }
1228 #else
1229 void
1230 erase(iterator __position)
1231 {
1232 __glibcxx_assert(__position != end());
1233 _M_erase_aux(__position);
1234 }
1235
1236 void
1237 erase(const_iterator __position)
1238 {
1239 __glibcxx_assert(__position != end());
1240 _M_erase_aux(__position);
1241 }
1242 #endif
1243 size_type
1244 erase(const key_type& __x);
1245
1246 #if __cplusplus >= 201103L
1247 // _GLIBCXX_RESOLVE_LIB_DEFECTS
1248 // DR 130. Associative erase should return an iterator.
1249 _GLIBCXX_ABI_TAG_CXX11
1250 iterator
1251 erase(const_iterator __first, const_iterator __last)
1252 {
1253 _M_erase_aux(__first, __last);
1254 return __last._M_const_cast();
1255 }
1256 #else
1257 void
1258 erase(iterator __first, iterator __last)
1259 { _M_erase_aux(__first, __last); }
1260
1261 void
1262 erase(const_iterator __first, const_iterator __last)
1263 { _M_erase_aux(__first, __last); }
1264 #endif
1265 void
1266 erase(const key_type* __first, const key_type* __last);
1267
1268 void
1269 clear() _GLIBCXX_NOEXCEPT
1270 {
1271 _M_erase(_M_begin());
1272 _M_impl._M_reset();
1273 }
1274
1275 // Set operations.
1276 iterator
1277 find(const key_type& __k);
1278
1279 const_iterator
1280 find(const key_type& __k) const;
1281
1282 size_type
1283 count(const key_type& __k) const;
1284
1285 iterator
1286 lower_bound(const key_type& __k)
1287 { return _M_lower_bound(_M_begin(), _M_end(), __k); }
1288
1289 const_iterator
1290 lower_bound(const key_type& __k) const
1291 { return _M_lower_bound(_M_begin(), _M_end(), __k); }
1292
1293 iterator
1294 upper_bound(const key_type& __k)
1295 { return _M_upper_bound(_M_begin(), _M_end(), __k); }
1296
1297 const_iterator
1298 upper_bound(const key_type& __k) const
1299 { return _M_upper_bound(_M_begin(), _M_end(), __k); }
1300
1301 pair<iterator, iterator>
1302 equal_range(const key_type& __k);
1303
1304 pair<const_iterator, const_iterator>
1305 equal_range(const key_type& __k) const;
1306
1307 #if __cplusplus >= 201402L
1308 template<typename _Kt,
1309 typename _Req = __has_is_transparent_t<_Compare, _Kt>>
1310 iterator
1311 _M_find_tr(const _Kt& __k)
1312 {
1313 const _Rb_tree* __const_this = this;
1314 return __const_this->_M_find_tr(__k)._M_const_cast();
1315 }
1316
1317 template<typename _Kt,
1318 typename _Req = __has_is_transparent_t<_Compare, _Kt>>
1319 const_iterator
1320 _M_find_tr(const _Kt& __k) const
1321 {
1322 auto __j = _M_lower_bound_tr(__k);
1323 if (__j != end() && _M_impl._M_key_compare(__k, _S_key(__j._M_node)))
1324 __j = end();
1325 return __j;
1326 }
1327
1328 template<typename _Kt,
1329 typename _Req = __has_is_transparent_t<_Compare, _Kt>>
1330 size_type
1331 _M_count_tr(const _Kt& __k) const
1332 {
1333 auto __p = _M_equal_range_tr(__k);
1334 return std::distance(__p.first, __p.second);
1335 }
1336
1337 template<typename _Kt,
1338 typename _Req = __has_is_transparent_t<_Compare, _Kt>>
1339 iterator
1340 _M_lower_bound_tr(const _Kt& __k)
1341 {
1342 const _Rb_tree* __const_this = this;
1343 return __const_this->_M_lower_bound_tr(__k)._M_const_cast();
1344 }
1345
1346 template<typename _Kt,
1347 typename _Req = __has_is_transparent_t<_Compare, _Kt>>
1348 const_iterator
1349 _M_lower_bound_tr(const _Kt& __k) const
1350 {
1351 auto __x = _M_begin();
1352 auto __y = _M_end();
1353 while (__x != 0)
1354 if (!_M_impl._M_key_compare(_S_key(__x), __k))
1355 {
1356 __y = __x;
1357 __x = _S_left(__x);
1358 }
1359 else
1360 __x = _S_right(__x);
1361 return const_iterator(__y);
1362 }
1363
1364 template<typename _Kt,
1365 typename _Req = __has_is_transparent_t<_Compare, _Kt>>
1366 iterator
1367 _M_upper_bound_tr(const _Kt& __k)
1368 {
1369 const _Rb_tree* __const_this = this;
1370 return __const_this->_M_upper_bound_tr(__k)._M_const_cast();
1371 }
1372
1373 template<typename _Kt,
1374 typename _Req = __has_is_transparent_t<_Compare, _Kt>>
1375 const_iterator
1376 _M_upper_bound_tr(const _Kt& __k) const
1377 {
1378 auto __x = _M_begin();
1379 auto __y = _M_end();
1380 while (__x != 0)
1381 if (_M_impl._M_key_compare(__k, _S_key(__x)))
1382 {
1383 __y = __x;
1384 __x = _S_left(__x);
1385 }
1386 else
1387 __x = _S_right(__x);
1388 return const_iterator(__y);
1389 }
1390
1391 template<typename _Kt,
1392 typename _Req = __has_is_transparent_t<_Compare, _Kt>>
1393 pair<iterator, iterator>
1394 _M_equal_range_tr(const _Kt& __k)
1395 {
1396 const _Rb_tree* __const_this = this;
1397 auto __ret = __const_this->_M_equal_range_tr(__k);
1398 return { __ret.first._M_const_cast(), __ret.second._M_const_cast() };
1399 }
1400
1401 template<typename _Kt,
1402 typename _Req = __has_is_transparent_t<_Compare, _Kt>>
1403 pair<const_iterator, const_iterator>
1404 _M_equal_range_tr(const _Kt& __k) const
1405 {
1406 auto __low = _M_lower_bound_tr(__k);
1407 auto __high = __low;
1408 auto& __cmp = _M_impl._M_key_compare;
1409 while (__high != end() && !__cmp(__k, _S_key(__high._M_node)))
1410 ++__high;
1411 return { __low, __high };
1412 }
1413 #endif
1414
1415 // Debugging.
1416 bool
1417 __rb_verify() const;
1418
1419 #if __cplusplus >= 201103L
1420 _Rb_tree&
1421 operator=(_Rb_tree&&)
1422 noexcept(_Alloc_traits::_S_nothrow_move()
1423 && is_nothrow_move_assignable<_Compare>::value);
1424
1425 template<typename _Iterator>
1426 void
1427 _M_assign_unique(_Iterator, _Iterator);
1428
1429 template<typename _Iterator>
1430 void
1431 _M_assign_equal(_Iterator, _Iterator);
1432
1433 private:
1434 // Move elements from container with equal allocator.
1435 void
1436 _M_move_data(_Rb_tree& __x, true_type)
1437 { _M_impl._M_move_data(__x._M_impl); }
1438
1439 // Move elements from container with possibly non-equal allocator,
1440 // which might result in a copy not a move.
1441 void
1442 _M_move_data(_Rb_tree&, false_type);
1443
1444 // Move assignment from container with equal allocator.
1445 void
1446 _M_move_assign(_Rb_tree&, true_type);
1447
1448 // Move assignment from container with possibly non-equal allocator,
1449 // which might result in a copy not a move.
1450 void
1451 _M_move_assign(_Rb_tree&, false_type);
1452 #endif
1453
1454 #if __cplusplus > 201402L
1455 public:
1456 /// Re-insert an extracted node.
1457 insert_return_type
1458 _M_reinsert_node_unique(node_type&& __nh)
1459 {
1460 insert_return_type __ret;
1461 if (__nh.empty())
1462 __ret.position = end();
1463 else
1464 {
1465 __glibcxx_assert(_M_get_Node_allocator() == *__nh._M_alloc);
1466
1467 auto __res = _M_get_insert_unique_pos(__nh._M_key());
1468 if (__res.second)
1469 {
1470 __ret.position
1471 = _M_insert_node(__res.first, __res.second, __nh._M_ptr);
1472 __nh._M_ptr = nullptr;
1473 __ret.inserted = true;
1474 }
1475 else
1476 {
1477 __ret.node = std::move(__nh);
1478 __ret.position = iterator(__res.first);
1479 __ret.inserted = false;
1480 }
1481 }
1482 return __ret;
1483 }
1484
1485 /// Re-insert an extracted node.
1486 iterator
1487 _M_reinsert_node_equal(node_type&& __nh)
1488 {
1489 iterator __ret;
1490 if (__nh.empty())
1491 __ret = end();
1492 else
1493 {
1494 __glibcxx_assert(_M_get_Node_allocator() == *__nh._M_alloc);
1495 auto __res = _M_get_insert_equal_pos(__nh._M_key());
1496 if (__res.second)
1497 __ret = _M_insert_node(__res.first, __res.second, __nh._M_ptr);
1498 else
1499 __ret = _M_insert_equal_lower_node(__nh._M_ptr);
1500 __nh._M_ptr = nullptr;
1501 }
1502 return __ret;
1503 }
1504
1505 /// Re-insert an extracted node.
1506 iterator
1507 _M_reinsert_node_hint_unique(const_iterator __hint, node_type&& __nh)
1508 {
1509 iterator __ret;
1510 if (__nh.empty())
1511 __ret = end();
1512 else
1513 {
1514 __glibcxx_assert(_M_get_Node_allocator() == *__nh._M_alloc);
1515 auto __res = _M_get_insert_hint_unique_pos(__hint, __nh._M_key());
1516 if (__res.second)
1517 {
1518 __ret = _M_insert_node(__res.first, __res.second, __nh._M_ptr);
1519 __nh._M_ptr = nullptr;
1520 }
1521 else
1522 __ret = iterator(__res.first);
1523 }
1524 return __ret;
1525 }
1526
1527 /// Re-insert an extracted node.
1528 iterator
1529 _M_reinsert_node_hint_equal(const_iterator __hint, node_type&& __nh)
1530 {
1531 iterator __ret;
1532 if (__nh.empty())
1533 __ret = end();
1534 else
1535 {
1536 __glibcxx_assert(_M_get_Node_allocator() == *__nh._M_alloc);
1537 auto __res = _M_get_insert_hint_equal_pos(__hint, __nh._M_key());
1538 if (__res.second)
1539 __ret = _M_insert_node(__res.first, __res.second, __nh._M_ptr);
1540 else
1541 __ret = _M_insert_equal_lower_node(__nh._M_ptr);
1542 __nh._M_ptr = nullptr;
1543 }
1544 return __ret;
1545 }
1546
1547 /// Extract a node.
1548 node_type
1549 extract(const_iterator __pos)
1550 {
1551 auto __ptr = _Rb_tree_rebalance_for_erase(
1552 __pos._M_const_cast()._M_node, _M_impl._M_header);
1553 --_M_impl._M_node_count;
1554 return { static_cast<_Link_type>(__ptr), _M_get_Node_allocator() };
1555 }
1556
1557 /// Extract a node.
1558 node_type
1559 extract(const key_type& __k)
1560 {
1561 node_type __nh;
1562 auto __pos = find(__k);
1563 if (__pos != end())
1564 __nh = extract(const_iterator(__pos));
1565 return __nh;
1566 }
1567
1568 template<typename _Compare2>
1569 using _Compatible_tree
1570 = _Rb_tree<_Key, _Val, _KeyOfValue, _Compare2, _Alloc>;
1571
1572 template<typename, typename>
1573 friend class _Rb_tree_merge_helper;
1574
1575 /// Merge from a compatible container into one with unique keys.
1576 template<typename _Compare2>
1577 void
1578 _M_merge_unique(_Compatible_tree<_Compare2>& __src) noexcept
1579 {
1580 using _Merge_helper = _Rb_tree_merge_helper<_Rb_tree, _Compare2>;
1581 for (auto __i = __src.begin(), __end = __src.end(); __i != __end;)
1582 {
1583 auto __pos = __i++;
1584 auto __res = _M_get_insert_unique_pos(_KeyOfValue()(*__pos));
1585 if (__res.second)
1586 {
1587 auto& __src_impl = _Merge_helper::_S_get_impl(__src);
1588 auto __ptr = _Rb_tree_rebalance_for_erase(
1589 __pos._M_node, __src_impl._M_header);
1590 --__src_impl._M_node_count;
1591 _M_insert_node(__res.first, __res.second,
1592 static_cast<_Link_type>(__ptr));
1593 }
1594 }
1595 }
1596
1597 /// Merge from a compatible container into one with equivalent keys.
1598 template<typename _Compare2>
1599 void
1600 _M_merge_equal(_Compatible_tree<_Compare2>& __src) noexcept
1601 {
1602 using _Merge_helper = _Rb_tree_merge_helper<_Rb_tree, _Compare2>;
1603 for (auto __i = __src.begin(), __end = __src.end(); __i != __end;)
1604 {
1605 auto __pos = __i++;
1606 auto __res = _M_get_insert_equal_pos(_KeyOfValue()(*__pos));
1607 if (__res.second)
1608 {
1609 auto& __src_impl = _Merge_helper::_S_get_impl(__src);
1610 auto __ptr = _Rb_tree_rebalance_for_erase(
1611 __pos._M_node, __src_impl._M_header);
1612 --__src_impl._M_node_count;
1613 _M_insert_node(__res.first, __res.second,
1614 static_cast<_Link_type>(__ptr));
1615 }
1616 }
1617 }
1618 #endif // C++17
1619 };
1620
1621 template<typename _Key, typename _Val, typename _KeyOfValue,
1622 typename _Compare, typename _Alloc>
1623 inline bool
1624 operator==(const _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __x,
1625 const _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __y)
1626 {
1627 return __x.size() == __y.size()
1628 && std::equal(__x.begin(), __x.end(), __y.begin());
1629 }
1630
1631 template<typename _Key, typename _Val, typename _KeyOfValue,
1632 typename _Compare, typename _Alloc>
1633 inline bool
1634 operator<(const _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __x,
1635 const _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __y)
1636 {
1637 return std::lexicographical_compare(__x.begin(), __x.end(),
1638 __y.begin(), __y.end());
1639 }
1640
1641 template<typename _Key, typename _Val, typename _KeyOfValue,
1642 typename _Compare, typename _Alloc>
1643 inline bool
1644 operator!=(const _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __x,
1645 const _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __y)
1646 { return !(__x == __y); }
1647
1648 template<typename _Key, typename _Val, typename _KeyOfValue,
1649 typename _Compare, typename _Alloc>
1650 inline bool
1651 operator>(const _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __x,
1652 const _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __y)
1653 { return __y < __x; }
1654
1655 template<typename _Key, typename _Val, typename _KeyOfValue,
1656 typename _Compare, typename _Alloc>
1657 inline bool
1658 operator<=(const _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __x,
1659 const _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __y)
1660 { return !(__y < __x); }
1661
1662 template<typename _Key, typename _Val, typename _KeyOfValue,
1663 typename _Compare, typename _Alloc>
1664 inline bool
1665 operator>=(const _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __x,
1666 const _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __y)
1667 { return !(__x < __y); }
1668
1669 template<typename _Key, typename _Val, typename _KeyOfValue,
1670 typename _Compare, typename _Alloc>
1671 inline void
1672 swap(_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __x,
1673 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>& __y)
1674 { __x.swap(__y); }
1675
1676 #if __cplusplus >= 201103L
1677 template<typename _Key, typename _Val, typename _KeyOfValue,
1678 typename _Compare, typename _Alloc>
1679 void
1680 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
1681 _M_move_data(_Rb_tree& __x, false_type)
1682 {
1683 if (_M_get_Node_allocator() == __x._M_get_Node_allocator())
1684 _M_move_data(__x, true_type());
1685 else
1686 {
1687 _Alloc_node __an(*this);
1688 auto __lbd =
1689 [&__an](const value_type& __cval)
1690 {
1691 auto& __val = const_cast<value_type&>(__cval);
1692 return __an(std::move_if_noexcept(__val));
1693 };
1694 _M_root() = _M_copy(__x, __lbd);
1695 }
1696 }
1697
1698 template<typename _Key, typename _Val, typename _KeyOfValue,
1699 typename _Compare, typename _Alloc>
1700 inline void
1701 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
1702 _M_move_assign(_Rb_tree& __x, true_type)
1703 {
1704 clear();
1705 if (__x._M_root() != nullptr)
1706 _M_move_data(__x, true_type());
1707 std::__alloc_on_move(_M_get_Node_allocator(),
1708 __x._M_get_Node_allocator());
1709 }
1710
1711 template<typename _Key, typename _Val, typename _KeyOfValue,
1712 typename _Compare, typename _Alloc>
1713 void
1714 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
1715 _M_move_assign(_Rb_tree& __x, false_type)
1716 {
1717 if (_M_get_Node_allocator() == __x._M_get_Node_allocator())
1718 return _M_move_assign(__x, true_type{});
1719
1720 // Try to move each node reusing existing nodes and copying __x nodes
1721 // structure.
1722 _Reuse_or_alloc_node __roan(*this);
1723 _M_impl._M_reset();
1724 if (__x._M_root() != nullptr)
1725 {
1726 auto __lbd =
1727 [&__roan](const value_type& __cval)
1728 {
1729 auto& __val = const_cast<value_type&>(__cval);
1730 return __roan(std::move_if_noexcept(__val));
1731 };
1732 _M_root() = _M_copy(__x, __lbd);
1733 __x.clear();
1734 }
1735 }
1736
1737 template<typename _Key, typename _Val, typename _KeyOfValue,
1738 typename _Compare, typename _Alloc>
1739 inline _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>&
1740 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
1741 operator=(_Rb_tree&& __x)
1742 noexcept(_Alloc_traits::_S_nothrow_move()
1743 && is_nothrow_move_assignable<_Compare>::value)
1744 {
1745 _M_impl._M_key_compare = std::move(__x._M_impl._M_key_compare);
1746 _M_move_assign(__x, __bool_constant<_Alloc_traits::_S_nothrow_move()>());
1747 return *this;
1748 }
1749
1750 template<typename _Key, typename _Val, typename _KeyOfValue,
1751 typename _Compare, typename _Alloc>
1752 template<typename _Iterator>
1753 void
1754 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
1755 _M_assign_unique(_Iterator __first, _Iterator __last)
1756 {
1757 _Reuse_or_alloc_node __roan(*this);
1758 _M_impl._M_reset();
1759 for (; __first != __last; ++__first)
1760 _M_insert_unique_(end(), *__first, __roan);
1761 }
1762
1763 template<typename _Key, typename _Val, typename _KeyOfValue,
1764 typename _Compare, typename _Alloc>
1765 template<typename _Iterator>
1766 void
1767 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
1768 _M_assign_equal(_Iterator __first, _Iterator __last)
1769 {
1770 _Reuse_or_alloc_node __roan(*this);
1771 _M_impl._M_reset();
1772 for (; __first != __last; ++__first)
1773 _M_insert_equal_(end(), *__first, __roan);
1774 }
1775 #endif
1776
1777 template<typename _Key, typename _Val, typename _KeyOfValue,
1778 typename _Compare, typename _Alloc>
1779 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>&
1780 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
1781 operator=(const _Rb_tree& __x)
1782 {
1783 if (this != &__x)
1784 {
1785 // Note that _Key may be a constant type.
1786 #if __cplusplus >= 201103L
1787 if (_Alloc_traits::_S_propagate_on_copy_assign())
1788 {
1789 auto& __this_alloc = this->_M_get_Node_allocator();
1790 auto& __that_alloc = __x._M_get_Node_allocator();
1791 if (!_Alloc_traits::_S_always_equal()
1792 && __this_alloc != __that_alloc)
1793 {
1794 // Replacement allocator cannot free existing storage, we need
1795 // to erase nodes first.
1796 clear();
1797 std::__alloc_on_copy(__this_alloc, __that_alloc);
1798 }
1799 }
1800 #endif
1801
1802 _Reuse_or_alloc_node __roan(*this);
1803 _M_impl._M_reset();
1804 _M_impl._M_key_compare = __x._M_impl._M_key_compare;
1805 if (__x._M_root() != 0)
1806 _M_root() = _M_copy(__x, __roan);
1807 }
1808
1809 return *this;
1810 }
1811
1812 template<typename _Key, typename _Val, typename _KeyOfValue,
1813 typename _Compare, typename _Alloc>
1814 #if __cplusplus >= 201103L
1815 template<typename _Arg, typename _NodeGen>
1816 #else
1817 template<typename _NodeGen>
1818 #endif
1819 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
1820 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
1821 _M_insert_(_Base_ptr __x, _Base_ptr __p,
1822 #if __cplusplus >= 201103L
1823 _Arg&& __v,
1824 #else
1825 const _Val& __v,
1826 #endif
1827 _NodeGen& __node_gen)
1828 {
1829 bool __insert_left = (__x != 0 || __p == _M_end()
1830 || _M_impl._M_key_compare(_KeyOfValue()(__v),
1831 _S_key(__p)));
1832
1833 _Link_type __z = __node_gen(_GLIBCXX_FORWARD(_Arg, __v));
1834
1835 _Rb_tree_insert_and_rebalance(__insert_left, __z, __p,
1836 this->_M_impl._M_header);
1837 ++_M_impl._M_node_count;
1838 return iterator(__z);
1839 }
1840
1841 template<typename _Key, typename _Val, typename _KeyOfValue,
1842 typename _Compare, typename _Alloc>
1843 #if __cplusplus >= 201103L
1844 template<typename _Arg>
1845 #endif
1846 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
1847 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
1848 #if __cplusplus >= 201103L
1849 _M_insert_lower(_Base_ptr __p, _Arg&& __v)
1850 #else
1851 _M_insert_lower(_Base_ptr __p, const _Val& __v)
1852 #endif
1853 {
1854 bool __insert_left = (__p == _M_end()
1855 || !_M_impl._M_key_compare(_S_key(__p),
1856 _KeyOfValue()(__v)));
1857
1858 _Link_type __z = _M_create_node(_GLIBCXX_FORWARD(_Arg, __v));
1859
1860 _Rb_tree_insert_and_rebalance(__insert_left, __z, __p,
1861 this->_M_impl._M_header);
1862 ++_M_impl._M_node_count;
1863 return iterator(__z);
1864 }
1865
1866 template<typename _Key, typename _Val, typename _KeyOfValue,
1867 typename _Compare, typename _Alloc>
1868 #if __cplusplus >= 201103L
1869 template<typename _Arg>
1870 #endif
1871 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
1872 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
1873 #if __cplusplus >= 201103L
1874 _M_insert_equal_lower(_Arg&& __v)
1875 #else
1876 _M_insert_equal_lower(const _Val& __v)
1877 #endif
1878 {
1879 _Link_type __x = _M_begin();
1880 _Base_ptr __y = _M_end();
1881 while (__x != 0)
1882 {
1883 __y = __x;
1884 __x = !_M_impl._M_key_compare(_S_key(__x), _KeyOfValue()(__v)) ?
1885 _S_left(__x) : _S_right(__x);
1886 }
1887 return _M_insert_lower(__y, _GLIBCXX_FORWARD(_Arg, __v));
1888 }
1889
1890 template<typename _Key, typename _Val, typename _KoV,
1891 typename _Compare, typename _Alloc>
1892 template<typename _NodeGen>
1893 typename _Rb_tree<_Key, _Val, _KoV, _Compare, _Alloc>::_Link_type
1894 _Rb_tree<_Key, _Val, _KoV, _Compare, _Alloc>::
1895 _M_copy(_Const_Link_type __x, _Base_ptr __p, _NodeGen& __node_gen)
1896 {
1897 // Structural copy. __x and __p must be non-null.
1898 _Link_type __top = _M_clone_node(__x, __node_gen);
1899 __top->_M_parent = __p;
1900
1901 __try
1902 {
1903 if (__x->_M_right)
1904 __top->_M_right = _M_copy(_S_right(__x), __top, __node_gen);
1905 __p = __top;
1906 __x = _S_left(__x);
1907
1908 while (__x != 0)
1909 {
1910 _Link_type __y = _M_clone_node(__x, __node_gen);
1911 __p->_M_left = __y;
1912 __y->_M_parent = __p;
1913 if (__x->_M_right)
1914 __y->_M_right = _M_copy(_S_right(__x), __y, __node_gen);
1915 __p = __y;
1916 __x = _S_left(__x);
1917 }
1918 }
1919 __catch(...)
1920 {
1921 _M_erase(__top);
1922 __throw_exception_again;
1923 }
1924 return __top;
1925 }
1926
1927 template<typename _Key, typename _Val, typename _KeyOfValue,
1928 typename _Compare, typename _Alloc>
1929 void
1930 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
1931 _M_erase(_Link_type __x)
1932 {
1933 // Erase without rebalancing.
1934 while (__x != 0)
1935 {
1936 _M_erase(_S_right(__x));
1937 _Link_type __y = _S_left(__x);
1938 _M_drop_node(__x);
1939 __x = __y;
1940 }
1941 }
1942
1943 template<typename _Key, typename _Val, typename _KeyOfValue,
1944 typename _Compare, typename _Alloc>
1945 typename _Rb_tree<_Key, _Val, _KeyOfValue,
1946 _Compare, _Alloc>::iterator
1947 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
1948 _M_lower_bound(_Link_type __x, _Base_ptr __y,
1949 const _Key& __k)
1950 {
1951 while (__x != 0)
1952 if (!_M_impl._M_key_compare(_S_key(__x), __k))
1953 __y = __x, __x = _S_left(__x);
1954 else
1955 __x = _S_right(__x);
1956 return iterator(__y);
1957 }
1958
1959 template<typename _Key, typename _Val, typename _KeyOfValue,
1960 typename _Compare, typename _Alloc>
1961 typename _Rb_tree<_Key, _Val, _KeyOfValue,
1962 _Compare, _Alloc>::const_iterator
1963 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
1964 _M_lower_bound(_Const_Link_type __x, _Const_Base_ptr __y,
1965 const _Key& __k) const
1966 {
1967 while (__x != 0)
1968 if (!_M_impl._M_key_compare(_S_key(__x), __k))
1969 __y = __x, __x = _S_left(__x);
1970 else
1971 __x = _S_right(__x);
1972 return const_iterator(__y);
1973 }
1974
1975 template<typename _Key, typename _Val, typename _KeyOfValue,
1976 typename _Compare, typename _Alloc>
1977 typename _Rb_tree<_Key, _Val, _KeyOfValue,
1978 _Compare, _Alloc>::iterator
1979 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
1980 _M_upper_bound(_Link_type __x, _Base_ptr __y,
1981 const _Key& __k)
1982 {
1983 while (__x != 0)
1984 if (_M_impl._M_key_compare(__k, _S_key(__x)))
1985 __y = __x, __x = _S_left(__x);
1986 else
1987 __x = _S_right(__x);
1988 return iterator(__y);
1989 }
1990
1991 template<typename _Key, typename _Val, typename _KeyOfValue,
1992 typename _Compare, typename _Alloc>
1993 typename _Rb_tree<_Key, _Val, _KeyOfValue,
1994 _Compare, _Alloc>::const_iterator
1995 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
1996 _M_upper_bound(_Const_Link_type __x, _Const_Base_ptr __y,
1997 const _Key& __k) const
1998 {
1999 while (__x != 0)
2000 if (_M_impl._M_key_compare(__k, _S_key(__x)))
2001 __y = __x, __x = _S_left(__x);
2002 else
2003 __x = _S_right(__x);
2004 return const_iterator(__y);
2005 }
2006
2007 template<typename _Key, typename _Val, typename _KeyOfValue,
2008 typename _Compare, typename _Alloc>
2009 pair<typename _Rb_tree<_Key, _Val, _KeyOfValue,
2010 _Compare, _Alloc>::iterator,
2011 typename _Rb_tree<_Key, _Val, _KeyOfValue,
2012 _Compare, _Alloc>::iterator>
2013 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2014 equal_range(const _Key& __k)
2015 {
2016 _Link_type __x = _M_begin();
2017 _Base_ptr __y = _M_end();
2018 while (__x != 0)
2019 {
2020 if (_M_impl._M_key_compare(_S_key(__x), __k))
2021 __x = _S_right(__x);
2022 else if (_M_impl._M_key_compare(__k, _S_key(__x)))
2023 __y = __x, __x = _S_left(__x);
2024 else
2025 {
2026 _Link_type __xu(__x);
2027 _Base_ptr __yu(__y);
2028 __y = __x, __x = _S_left(__x);
2029 __xu = _S_right(__xu);
2030 return pair<iterator,
2031 iterator>(_M_lower_bound(__x, __y, __k),
2032 _M_upper_bound(__xu, __yu, __k));
2033 }
2034 }
2035 return pair<iterator, iterator>(iterator(__y),
2036 iterator(__y));
2037 }
2038
2039 template<typename _Key, typename _Val, typename _KeyOfValue,
2040 typename _Compare, typename _Alloc>
2041 pair<typename _Rb_tree<_Key, _Val, _KeyOfValue,
2042 _Compare, _Alloc>::const_iterator,
2043 typename _Rb_tree<_Key, _Val, _KeyOfValue,
2044 _Compare, _Alloc>::const_iterator>
2045 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2046 equal_range(const _Key& __k) const
2047 {
2048 _Const_Link_type __x = _M_begin();
2049 _Const_Base_ptr __y = _M_end();
2050 while (__x != 0)
2051 {
2052 if (_M_impl._M_key_compare(_S_key(__x), __k))
2053 __x = _S_right(__x);
2054 else if (_M_impl._M_key_compare(__k, _S_key(__x)))
2055 __y = __x, __x = _S_left(__x);
2056 else
2057 {
2058 _Const_Link_type __xu(__x);
2059 _Const_Base_ptr __yu(__y);
2060 __y = __x, __x = _S_left(__x);
2061 __xu = _S_right(__xu);
2062 return pair<const_iterator,
2063 const_iterator>(_M_lower_bound(__x, __y, __k),
2064 _M_upper_bound(__xu, __yu, __k));
2065 }
2066 }
2067 return pair<const_iterator, const_iterator>(const_iterator(__y),
2068 const_iterator(__y));
2069 }
2070
2071 template<typename _Key, typename _Val, typename _KeyOfValue,
2072 typename _Compare, typename _Alloc>
2073 void
2074 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2075 swap(_Rb_tree& __t)
2076 _GLIBCXX_NOEXCEPT_IF(__is_nothrow_swappable<_Compare>::value)
2077 {
2078 if (_M_root() == 0)
2079 {
2080 if (__t._M_root() != 0)
2081 _M_impl._M_move_data(__t._M_impl);
2082 }
2083 else if (__t._M_root() == 0)
2084 __t._M_impl._M_move_data(_M_impl);
2085 else
2086 {
2087 std::swap(_M_root(),__t._M_root());
2088 std::swap(_M_leftmost(),__t._M_leftmost());
2089 std::swap(_M_rightmost(),__t._M_rightmost());
2090
2091 _M_root()->_M_parent = _M_end();
2092 __t._M_root()->_M_parent = __t._M_end();
2093 std::swap(this->_M_impl._M_node_count, __t._M_impl._M_node_count);
2094 }
2095 // No need to swap header's color as it does not change.
2096 std::swap(this->_M_impl._M_key_compare, __t._M_impl._M_key_compare);
2097
2098 _Alloc_traits::_S_on_swap(_M_get_Node_allocator(),
2099 __t._M_get_Node_allocator());
2100 }
2101
2102 template<typename _Key, typename _Val, typename _KeyOfValue,
2103 typename _Compare, typename _Alloc>
2104 pair<typename _Rb_tree<_Key, _Val, _KeyOfValue,
2105 _Compare, _Alloc>::_Base_ptr,
2106 typename _Rb_tree<_Key, _Val, _KeyOfValue,
2107 _Compare, _Alloc>::_Base_ptr>
2108 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2109 _M_get_insert_unique_pos(const key_type& __k)
2110 {
2111 typedef pair<_Base_ptr, _Base_ptr> _Res;
2112 _Link_type __x = _M_begin();
2113 _Base_ptr __y = _M_end();
2114 bool __comp = true;
2115 while (__x != 0)
2116 {
2117 __y = __x;
2118 __comp = _M_impl._M_key_compare(__k, _S_key(__x));
2119 __x = __comp ? _S_left(__x) : _S_right(__x);
2120 }
2121 iterator __j = iterator(__y);
2122 if (__comp)
2123 {
2124 if (__j == begin())
2125 return _Res(__x, __y);
2126 else
2127 --__j;
2128 }
2129 if (_M_impl._M_key_compare(_S_key(__j._M_node), __k))
2130 return _Res(__x, __y);
2131 return _Res(__j._M_node, 0);
2132 }
2133
2134 template<typename _Key, typename _Val, typename _KeyOfValue,
2135 typename _Compare, typename _Alloc>
2136 pair<typename _Rb_tree<_Key, _Val, _KeyOfValue,
2137 _Compare, _Alloc>::_Base_ptr,
2138 typename _Rb_tree<_Key, _Val, _KeyOfValue,
2139 _Compare, _Alloc>::_Base_ptr>
2140 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2141 _M_get_insert_equal_pos(const key_type& __k)
2142 {
2143 typedef pair<_Base_ptr, _Base_ptr> _Res;
2144 _Link_type __x = _M_begin();
2145 _Base_ptr __y = _M_end();
2146 while (__x != 0)
2147 {
2148 __y = __x;
2149 __x = _M_impl._M_key_compare(__k, _S_key(__x)) ?
2150 _S_left(__x) : _S_right(__x);
2151 }
2152 return _Res(__x, __y);
2153 }
2154
2155 template<typename _Key, typename _Val, typename _KeyOfValue,
2156 typename _Compare, typename _Alloc>
2157 #if __cplusplus >= 201103L
2158 template<typename _Arg>
2159 #endif
2160 pair<typename _Rb_tree<_Key, _Val, _KeyOfValue,
2161 _Compare, _Alloc>::iterator, bool>
2162 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2163 #if __cplusplus >= 201103L
2164 _M_insert_unique(_Arg&& __v)
2165 #else
2166 _M_insert_unique(const _Val& __v)
2167 #endif
2168 {
2169 typedef pair<iterator, bool> _Res;
2170 pair<_Base_ptr, _Base_ptr> __res
2171 = _M_get_insert_unique_pos(_KeyOfValue()(__v));
2172
2173 if (__res.second)
2174 {
2175 _Alloc_node __an(*this);
2176 return _Res(_M_insert_(__res.first, __res.second,
2177 _GLIBCXX_FORWARD(_Arg, __v), __an),
2178 true);
2179 }
2180
2181 return _Res(iterator(__res.first), false);
2182 }
2183
2184 template<typename _Key, typename _Val, typename _KeyOfValue,
2185 typename _Compare, typename _Alloc>
2186 #if __cplusplus >= 201103L
2187 template<typename _Arg>
2188 #endif
2189 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
2190 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2191 #if __cplusplus >= 201103L
2192 _M_insert_equal(_Arg&& __v)
2193 #else
2194 _M_insert_equal(const _Val& __v)
2195 #endif
2196 {
2197 pair<_Base_ptr, _Base_ptr> __res
2198 = _M_get_insert_equal_pos(_KeyOfValue()(__v));
2199 _Alloc_node __an(*this);
2200 return _M_insert_(__res.first, __res.second,
2201 _GLIBCXX_FORWARD(_Arg, __v), __an);
2202 }
2203
2204 template<typename _Key, typename _Val, typename _KeyOfValue,
2205 typename _Compare, typename _Alloc>
2206 pair<typename _Rb_tree<_Key, _Val, _KeyOfValue,
2207 _Compare, _Alloc>::_Base_ptr,
2208 typename _Rb_tree<_Key, _Val, _KeyOfValue,
2209 _Compare, _Alloc>::_Base_ptr>
2210 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2211 _M_get_insert_hint_unique_pos(const_iterator __position,
2212 const key_type& __k)
2213 {
2214 iterator __pos = __position._M_const_cast();
2215 typedef pair<_Base_ptr, _Base_ptr> _Res;
2216
2217 // end()
2218 if (__pos._M_node == _M_end())
2219 {
2220 if (size() > 0
2221 && _M_impl._M_key_compare(_S_key(_M_rightmost()), __k))
2222 return _Res(0, _M_rightmost());
2223 else
2224 return _M_get_insert_unique_pos(__k);
2225 }
2226 else if (_M_impl._M_key_compare(__k, _S_key(__pos._M_node)))
2227 {
2228 // First, try before...
2229 iterator __before = __pos;
2230 if (__pos._M_node == _M_leftmost()) // begin()
2231 return _Res(_M_leftmost(), _M_leftmost());
2232 else if (_M_impl._M_key_compare(_S_key((--__before)._M_node), __k))
2233 {
2234 if (_S_right(__before._M_node) == 0)
2235 return _Res(0, __before._M_node);
2236 else
2237 return _Res(__pos._M_node, __pos._M_node);
2238 }
2239 else
2240 return _M_get_insert_unique_pos(__k);
2241 }
2242 else if (_M_impl._M_key_compare(_S_key(__pos._M_node), __k))
2243 {
2244 // ... then try after.
2245 iterator __after = __pos;
2246 if (__pos._M_node == _M_rightmost())
2247 return _Res(0, _M_rightmost());
2248 else if (_M_impl._M_key_compare(__k, _S_key((++__after)._M_node)))
2249 {
2250 if (_S_right(__pos._M_node) == 0)
2251 return _Res(0, __pos._M_node);
2252 else
2253 return _Res(__after._M_node, __after._M_node);
2254 }
2255 else
2256 return _M_get_insert_unique_pos(__k);
2257 }
2258 else
2259 // Equivalent keys.
2260 return _Res(__pos._M_node, 0);
2261 }
2262
2263 template<typename _Key, typename _Val, typename _KeyOfValue,
2264 typename _Compare, typename _Alloc>
2265 #if __cplusplus >= 201103L
2266 template<typename _Arg, typename _NodeGen>
2267 #else
2268 template<typename _NodeGen>
2269 #endif
2270 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
2271 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2272 _M_insert_unique_(const_iterator __position,
2273 #if __cplusplus >= 201103L
2274 _Arg&& __v,
2275 #else
2276 const _Val& __v,
2277 #endif
2278 _NodeGen& __node_gen)
2279 {
2280 pair<_Base_ptr, _Base_ptr> __res
2281 = _M_get_insert_hint_unique_pos(__position, _KeyOfValue()(__v));
2282
2283 if (__res.second)
2284 return _M_insert_(__res.first, __res.second,
2285 _GLIBCXX_FORWARD(_Arg, __v),
2286 __node_gen);
2287 return iterator(__res.first);
2288 }
2289
2290 template<typename _Key, typename _Val, typename _KeyOfValue,
2291 typename _Compare, typename _Alloc>
2292 pair<typename _Rb_tree<_Key, _Val, _KeyOfValue,
2293 _Compare, _Alloc>::_Base_ptr,
2294 typename _Rb_tree<_Key, _Val, _KeyOfValue,
2295 _Compare, _Alloc>::_Base_ptr>
2296 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2297 _M_get_insert_hint_equal_pos(const_iterator __position, const key_type& __k)
2298 {
2299 iterator __pos = __position._M_const_cast();
2300 typedef pair<_Base_ptr, _Base_ptr> _Res;
2301
2302 // end()
2303 if (__pos._M_node == _M_end())
2304 {
2305 if (size() > 0
2306 && !_M_impl._M_key_compare(__k, _S_key(_M_rightmost())))
2307 return _Res(0, _M_rightmost());
2308 else
2309 return _M_get_insert_equal_pos(__k);
2310 }
2311 else if (!_M_impl._M_key_compare(_S_key(__pos._M_node), __k))
2312 {
2313 // First, try before...
2314 iterator __before = __pos;
2315 if (__pos._M_node == _M_leftmost()) // begin()
2316 return _Res(_M_leftmost(), _M_leftmost());
2317 else if (!_M_impl._M_key_compare(__k, _S_key((--__before)._M_node)))
2318 {
2319 if (_S_right(__before._M_node) == 0)
2320 return _Res(0, __before._M_node);
2321 else
2322 return _Res(__pos._M_node, __pos._M_node);
2323 }
2324 else
2325 return _M_get_insert_equal_pos(__k);
2326 }
2327 else
2328 {
2329 // ... then try after.
2330 iterator __after = __pos;
2331 if (__pos._M_node == _M_rightmost())
2332 return _Res(0, _M_rightmost());
2333 else if (!_M_impl._M_key_compare(_S_key((++__after)._M_node), __k))
2334 {
2335 if (_S_right(__pos._M_node) == 0)
2336 return _Res(0, __pos._M_node);
2337 else
2338 return _Res(__after._M_node, __after._M_node);
2339 }
2340 else
2341 return _Res(0, 0);
2342 }
2343 }
2344
2345 template<typename _Key, typename _Val, typename _KeyOfValue,
2346 typename _Compare, typename _Alloc>
2347 #if __cplusplus >= 201103L
2348 template<typename _Arg, typename _NodeGen>
2349 #else
2350 template<typename _NodeGen>
2351 #endif
2352 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
2353 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2354 _M_insert_equal_(const_iterator __position,
2355 #if __cplusplus >= 201103L
2356 _Arg&& __v,
2357 #else
2358 const _Val& __v,
2359 #endif
2360 _NodeGen& __node_gen)
2361 {
2362 pair<_Base_ptr, _Base_ptr> __res
2363 = _M_get_insert_hint_equal_pos(__position, _KeyOfValue()(__v));
2364
2365 if (__res.second)
2366 return _M_insert_(__res.first, __res.second,
2367 _GLIBCXX_FORWARD(_Arg, __v),
2368 __node_gen);
2369
2370 return _M_insert_equal_lower(_GLIBCXX_FORWARD(_Arg, __v));
2371 }
2372
2373 #if __cplusplus >= 201103L
2374 template<typename _Key, typename _Val, typename _KeyOfValue,
2375 typename _Compare, typename _Alloc>
2376 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
2377 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2378 _M_insert_node(_Base_ptr __x, _Base_ptr __p, _Link_type __z)
2379 {
2380 bool __insert_left = (__x != 0 || __p == _M_end()
2381 || _M_impl._M_key_compare(_S_key(__z),
2382 _S_key(__p)));
2383
2384 _Rb_tree_insert_and_rebalance(__insert_left, __z, __p,
2385 this->_M_impl._M_header);
2386 ++_M_impl._M_node_count;
2387 return iterator(__z);
2388 }
2389
2390 template<typename _Key, typename _Val, typename _KeyOfValue,
2391 typename _Compare, typename _Alloc>
2392 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
2393 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2394 _M_insert_lower_node(_Base_ptr __p, _Link_type __z)
2395 {
2396 bool __insert_left = (__p == _M_end()
2397 || !_M_impl._M_key_compare(_S_key(__p),
2398 _S_key(__z)));
2399
2400 _Rb_tree_insert_and_rebalance(__insert_left, __z, __p,
2401 this->_M_impl._M_header);
2402 ++_M_impl._M_node_count;
2403 return iterator(__z);
2404 }
2405
2406 template<typename _Key, typename _Val, typename _KeyOfValue,
2407 typename _Compare, typename _Alloc>
2408 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
2409 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2410 _M_insert_equal_lower_node(_Link_type __z)
2411 {
2412 _Link_type __x = _M_begin();
2413 _Base_ptr __y = _M_end();
2414 while (__x != 0)
2415 {
2416 __y = __x;
2417 __x = !_M_impl._M_key_compare(_S_key(__x), _S_key(__z)) ?
2418 _S_left(__x) : _S_right(__x);
2419 }
2420 return _M_insert_lower_node(__y, __z);
2421 }
2422
2423 template<typename _Key, typename _Val, typename _KeyOfValue,
2424 typename _Compare, typename _Alloc>
2425 template<typename... _Args>
2426 pair<typename _Rb_tree<_Key, _Val, _KeyOfValue,
2427 _Compare, _Alloc>::iterator, bool>
2428 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2429 _M_emplace_unique(_Args&&... __args)
2430 {
2431 _Link_type __z = _M_create_node(std::forward<_Args>(__args)...);
2432
2433 __try
2434 {
2435 typedef pair<iterator, bool> _Res;
2436 auto __res = _M_get_insert_unique_pos(_S_key(__z));
2437 if (__res.second)
2438 return _Res(_M_insert_node(__res.first, __res.second, __z), true);
2439
2440 _M_drop_node(__z);
2441 return _Res(iterator(__res.first), false);
2442 }
2443 __catch(...)
2444 {
2445 _M_drop_node(__z);
2446 __throw_exception_again;
2447 }
2448 }
2449
2450 template<typename _Key, typename _Val, typename _KeyOfValue,
2451 typename _Compare, typename _Alloc>
2452 template<typename... _Args>
2453 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
2454 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2455 _M_emplace_equal(_Args&&... __args)
2456 {
2457 _Link_type __z = _M_create_node(std::forward<_Args>(__args)...);
2458
2459 __try
2460 {
2461 auto __res = _M_get_insert_equal_pos(_S_key(__z));
2462 return _M_insert_node(__res.first, __res.second, __z);
2463 }
2464 __catch(...)
2465 {
2466 _M_drop_node(__z);
2467 __throw_exception_again;
2468 }
2469 }
2470
2471 template<typename _Key, typename _Val, typename _KeyOfValue,
2472 typename _Compare, typename _Alloc>
2473 template<typename... _Args>
2474 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
2475 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2476 _M_emplace_hint_unique(const_iterator __pos, _Args&&... __args)
2477 {
2478 _Link_type __z = _M_create_node(std::forward<_Args>(__args)...);
2479
2480 __try
2481 {
2482 auto __res = _M_get_insert_hint_unique_pos(__pos, _S_key(__z));
2483
2484 if (__res.second)
2485 return _M_insert_node(__res.first, __res.second, __z);
2486
2487 _M_drop_node(__z);
2488 return iterator(__res.first);
2489 }
2490 __catch(...)
2491 {
2492 _M_drop_node(__z);
2493 __throw_exception_again;
2494 }
2495 }
2496
2497 template<typename _Key, typename _Val, typename _KeyOfValue,
2498 typename _Compare, typename _Alloc>
2499 template<typename... _Args>
2500 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator
2501 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2502 _M_emplace_hint_equal(const_iterator __pos, _Args&&... __args)
2503 {
2504 _Link_type __z = _M_create_node(std::forward<_Args>(__args)...);
2505
2506 __try
2507 {
2508 auto __res = _M_get_insert_hint_equal_pos(__pos, _S_key(__z));
2509
2510 if (__res.second)
2511 return _M_insert_node(__res.first, __res.second, __z);
2512
2513 return _M_insert_equal_lower_node(__z);
2514 }
2515 __catch(...)
2516 {
2517 _M_drop_node(__z);
2518 __throw_exception_again;
2519 }
2520 }
2521 #endif
2522
2523
2524 template<typename _Key, typename _Val, typename _KeyOfValue,
2525 typename _Compare, typename _Alloc>
2526 void
2527 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2528 _M_erase_aux(const_iterator __position)
2529 {
2530 _Link_type __y =
2531 static_cast<_Link_type>(_Rb_tree_rebalance_for_erase
2532 (const_cast<_Base_ptr>(__position._M_node),
2533 this->_M_impl._M_header));
2534 _M_drop_node(__y);
2535 --_M_impl._M_node_count;
2536 }
2537
2538 template<typename _Key, typename _Val, typename _KeyOfValue,
2539 typename _Compare, typename _Alloc>
2540 void
2541 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2542 _M_erase_aux(const_iterator __first, const_iterator __last)
2543 {
2544 if (__first == begin() && __last == end())
2545 clear();
2546 else
2547 while (__first != __last)
2548 _M_erase_aux(__first++);
2549 }
2550
2551 template<typename _Key, typename _Val, typename _KeyOfValue,
2552 typename _Compare, typename _Alloc>
2553 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::size_type
2554 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2555 erase(const _Key& __x)
2556 {
2557 pair<iterator, iterator> __p = equal_range(__x);
2558 const size_type __old_size = size();
2559 _M_erase_aux(__p.first, __p.second);
2560 return __old_size - size();
2561 }
2562
2563 template<typename _Key, typename _Val, typename _KeyOfValue,
2564 typename _Compare, typename _Alloc>
2565 void
2566 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2567 erase(const _Key* __first, const _Key* __last)
2568 {
2569 while (__first != __last)
2570 erase(*__first++);
2571 }
2572
2573 template<typename _Key, typename _Val, typename _KeyOfValue,
2574 typename _Compare, typename _Alloc>
2575 typename _Rb_tree<_Key, _Val, _KeyOfValue,
2576 _Compare, _Alloc>::iterator
2577 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2578 find(const _Key& __k)
2579 {
2580 iterator __j = _M_lower_bound(_M_begin(), _M_end(), __k);
2581 return (__j == end()
2582 || _M_impl._M_key_compare(__k,
2583 _S_key(__j._M_node))) ? end() : __j;
2584 }
2585
2586 template<typename _Key, typename _Val, typename _KeyOfValue,
2587 typename _Compare, typename _Alloc>
2588 typename _Rb_tree<_Key, _Val, _KeyOfValue,
2589 _Compare, _Alloc>::const_iterator
2590 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2591 find(const _Key& __k) const
2592 {
2593 const_iterator __j = _M_lower_bound(_M_begin(), _M_end(), __k);
2594 return (__j == end()
2595 || _M_impl._M_key_compare(__k,
2596 _S_key(__j._M_node))) ? end() : __j;
2597 }
2598
2599 template<typename _Key, typename _Val, typename _KeyOfValue,
2600 typename _Compare, typename _Alloc>
2601 typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::size_type
2602 _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
2603 count(const _Key& __k) const
2604 {
2605 pair<const_iterator, const_iterator> __p = equal_range(__k);
2606 const size_type __n = std::distance(__p.first, __p.second);
2607 return __n;
2608 }
2609
2610 _GLIBCXX_PURE unsigned int
2611 _Rb_tree_black_count(const _Rb_tree_node_base* __node,
2612 const _Rb_tree_node_base* __root) throw ();
2613
2614 template<typename _Key, typename _Val, typename _KeyOfValue,
2615 typename _Compare, typename _Alloc>
2616 bool
2617 _Rb_tree<_Key,_Val,_KeyOfValue,_Compare,_Alloc>::__rb_verify() const
2618 {
2619 if (_M_impl._M_node_count == 0 || begin() == end())
2620 return _M_impl._M_node_count == 0 && begin() == end()
2621 && this->_M_impl._M_header._M_left == _M_end()
2622 && this->_M_impl._M_header._M_right == _M_end();
2623
2624 unsigned int __len = _Rb_tree_black_count(_M_leftmost(), _M_root());
2625 for (const_iterator __it = begin(); __it != end(); ++__it)
2626 {
2627 _Const_Link_type __x = static_cast<_Const_Link_type>(__it._M_node);
2628 _Const_Link_type __L = _S_left(__x);
2629 _Const_Link_type __R = _S_right(__x);
2630
2631 if (__x->_M_color == _S_red)
2632 if ((__L && __L->_M_color == _S_red)
2633 || (__R && __R->_M_color == _S_red))
2634 return false;
2635
2636 if (__L && _M_impl._M_key_compare(_S_key(__x), _S_key(__L)))
2637 return false;
2638 if (__R && _M_impl._M_key_compare(_S_key(__R), _S_key(__x)))
2639 return false;
2640
2641 if (!__L && !__R && _Rb_tree_black_count(__x, _M_root()) != __len)
2642 return false;
2643 }
2644
2645 if (_M_leftmost() != _Rb_tree_node_base::_S_minimum(_M_root()))
2646 return false;
2647 if (_M_rightmost() != _Rb_tree_node_base::_S_maximum(_M_root()))
2648 return false;
2649 return true;
2650 }
2651
2652 #if __cplusplus > 201402L
2653 // Allow access to internals of compatible _Rb_tree specializations.
2654 template<typename _Key, typename _Val, typename _Sel, typename _Cmp1,
2655 typename _Alloc, typename _Cmp2>
2656 struct _Rb_tree_merge_helper<_Rb_tree<_Key, _Val, _Sel, _Cmp1, _Alloc>,
2657 _Cmp2>
2658 {
2659 private:
2660 friend class _Rb_tree<_Key, _Val, _Sel, _Cmp1, _Alloc>;
2661
2662 static auto&
2663 _S_get_impl(_Rb_tree<_Key, _Val, _Sel, _Cmp2, _Alloc>& __tree)
2664 { return __tree._M_impl; }
2665 };
2666 #endif // C++17
2667
2668 _GLIBCXX_END_NAMESPACE_VERSION
2669 } // namespace
2670
2671 #endif