stl_tree.h
上传用户:nizebo
上传日期:2022-05-14
资源大小:882k
文件大小:44k
源码类别:

STL

开发平台:

Visual C++

  1. /*
  2.  *
  3.  * Copyright (c) 1996,1997
  4.  * Silicon Graphics Computer Systems, Inc.
  5.  *
  6.  * Permission to use, copy, modify, distribute and sell this software
  7.  * and its documentation for any purpose is hereby granted without fee,
  8.  * provided that the above copyright notice appear in all copies and
  9.  * that both that copyright notice and this permission notice appear
  10.  * in supporting documentation.  Silicon Graphics makes no
  11.  * representations about the suitability of this software for any
  12.  * purpose.  It is provided "as is" without express or implied warranty.
  13.  *
  14.  *
  15.  * Copyright (c) 1994
  16.  * Hewlett-Packard Company
  17.  *
  18.  * Permission to use, copy, modify, distribute and sell this software
  19.  * and its documentation for any purpose is hereby granted without fee,
  20.  * provided that the above copyright notice appear in all copies and
  21.  * that both that copyright notice and this permission notice appear
  22.  * in supporting documentation.  Hewlett-Packard Company makes no
  23.  * representations about the suitability of this software for any
  24.  * purpose.  It is provided "as is" without express or implied warranty.
  25.  *
  26.  *
  27.  */
  28. /* NOTE: This is an internal header file, included by other STL headers.
  29.  *   You should not attempt to use it directly.
  30.  */
  31. #ifndef __SGI_STL_INTERNAL_TREE_H
  32. #define __SGI_STL_INTERNAL_TREE_H
  33. /*
  34. Red-black tree class, designed for use in implementing STL
  35. associative containers (set, multiset, map, and multimap). The
  36. insertion and deletion algorithms are based on those in Cormen,
  37. Leiserson, and Rivest, Introduction to Algorithms (MIT Press, 1990),
  38. except that
  39. (1) the header cell is maintained with links not only to the root
  40. but also to the leftmost node of the tree, to enable constant time
  41. begin(), and to the rightmost node of the tree, to enable linear time
  42. performance when used with the generic set algorithms (set_union,
  43. etc.);
  44. (2) when a node being deleted has two children its successor node is
  45. relinked into its place, rather than copied, so that the only
  46. iterators invalidated are those referring to the deleted node.
  47. */
  48. #include <stl_algobase.h>
  49. #include <stl_alloc.h>
  50. #include <stl_construct.h>
  51. #include <stl_function.h>
  52. __STL_BEGIN_NAMESPACE 
  53. #if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  54. #pragma set woff 1375
  55. #endif
  56. typedef bool _Rb_tree_Color_type;
  57. const _Rb_tree_Color_type _S_rb_tree_red = false;
  58. const _Rb_tree_Color_type _S_rb_tree_black = true;
  59. struct _Rb_tree_node_base
  60. {
  61.   typedef _Rb_tree_Color_type _Color_type;
  62.   typedef _Rb_tree_node_base* _Base_ptr;
  63.   _Color_type _M_color; 
  64.   _Base_ptr _M_parent;
  65.   _Base_ptr _M_left;
  66.   _Base_ptr _M_right;
  67.   static _Base_ptr _S_minimum(_Base_ptr __x)
  68.   {
  69.     while (__x->_M_left != 0) __x = __x->_M_left;
  70.     return __x;
  71.   }
  72.   static _Base_ptr _S_maximum(_Base_ptr __x)
  73.   {
  74.     while (__x->_M_right != 0) __x = __x->_M_right;
  75.     return __x;
  76.   }
  77. };
  78. template <class _Value>
  79. struct _Rb_tree_node : public _Rb_tree_node_base
  80. {
  81.   typedef _Rb_tree_node<_Value>* _Link_type;
  82.   _Value _M_value_field;
  83. };
  84. struct _Rb_tree_base_iterator
  85. {
  86.   typedef _Rb_tree_node_base::_Base_ptr _Base_ptr;
  87.   typedef bidirectional_iterator_tag iterator_category;
  88.   typedef ptrdiff_t difference_type;
  89.   _Base_ptr _M_node;
  90.   void _M_increment()
  91.   {
  92.     if (_M_node->_M_right != 0) {
  93.       _M_node = _M_node->_M_right;
  94.       while (_M_node->_M_left != 0)
  95.         _M_node = _M_node->_M_left;
  96.     }
  97.     else {
  98.       _Base_ptr __y = _M_node->_M_parent;
  99.       while (_M_node == __y->_M_right) {
  100.         _M_node = __y;
  101.         __y = __y->_M_parent;
  102.       }
  103.       if (_M_node->_M_right != __y)
  104.         _M_node = __y;
  105.     }
  106.   }
  107.   void _M_decrement()
  108.   {
  109.     if (_M_node->_M_color == _S_rb_tree_red &&
  110.         _M_node->_M_parent->_M_parent == _M_node)
  111.       _M_node = _M_node->_M_right;
  112.     else if (_M_node->_M_left != 0) {
  113.       _Base_ptr __y = _M_node->_M_left;
  114.       while (__y->_M_right != 0)
  115.         __y = __y->_M_right;
  116.       _M_node = __y;
  117.     }
  118.     else {
  119.       _Base_ptr __y = _M_node->_M_parent;
  120.       while (_M_node == __y->_M_left) {
  121.         _M_node = __y;
  122.         __y = __y->_M_parent;
  123.       }
  124.       _M_node = __y;
  125.     }
  126.   }
  127. };
  128. template <class _Value, class _Ref, class _Ptr>
  129. struct _Rb_tree_iterator : public _Rb_tree_base_iterator
  130. {
  131.   typedef _Value value_type;
  132.   typedef _Ref reference;
  133.   typedef _Ptr pointer;
  134.   typedef _Rb_tree_iterator<_Value, _Value&, _Value*>             
  135.     iterator;
  136.   typedef _Rb_tree_iterator<_Value, const _Value&, const _Value*> 
  137.     const_iterator;
  138.   typedef _Rb_tree_iterator<_Value, _Ref, _Ptr>                   
  139.     _Self;
  140.   typedef _Rb_tree_node<_Value>* _Link_type;
  141.   _Rb_tree_iterator() {}
  142.   _Rb_tree_iterator(_Link_type __x) { _M_node = __x; }
  143.   _Rb_tree_iterator(const iterator& __it) { _M_node = __it._M_node; }
  144.   reference operator*() const { return _Link_type(_M_node)->_M_value_field; }
  145. #ifndef __SGI_STL_NO_ARROW_OPERATOR
  146.   pointer operator->() const { return &(operator*()); }
  147. #endif /* __SGI_STL_NO_ARROW_OPERATOR */
  148.   _Self& operator++() { _M_increment(); return *this; }
  149.   _Self operator++(int) {
  150.     _Self __tmp = *this;
  151.     _M_increment();
  152.     return __tmp;
  153.   }
  154.     
  155.   _Self& operator--() { _M_decrement(); return *this; }
  156.   _Self operator--(int) {
  157.     _Self __tmp = *this;
  158.     _M_decrement();
  159.     return __tmp;
  160.   }
  161. };
  162. inline bool operator==(const _Rb_tree_base_iterator& __x,
  163.                        const _Rb_tree_base_iterator& __y) {
  164.   return __x._M_node == __y._M_node;
  165. }
  166. inline bool operator!=(const _Rb_tree_base_iterator& __x,
  167.                        const _Rb_tree_base_iterator& __y) {
  168.   return __x._M_node != __y._M_node;
  169. }
  170. #ifndef __STL_CLASS_PARTIAL_SPECIALIZATION
  171. inline bidirectional_iterator_tag
  172. iterator_category(const _Rb_tree_base_iterator&) {
  173.   return bidirectional_iterator_tag();
  174. }
  175. inline _Rb_tree_base_iterator::difference_type*
  176. distance_type(const _Rb_tree_base_iterator&) {
  177.   return (_Rb_tree_base_iterator::difference_type*) 0;
  178. }
  179. template <class _Value, class _Ref, class _Ptr>
  180. inline _Value* value_type(const _Rb_tree_iterator<_Value, _Ref, _Ptr>&) {
  181.   return (_Value*) 0;
  182. }
  183. #endif /* __STL_CLASS_PARTIAL_SPECIALIZATION */
  184. inline void 
  185. _Rb_tree_rotate_left(_Rb_tree_node_base* __x, _Rb_tree_node_base*& __root)
  186. {
  187.   _Rb_tree_node_base* __y = __x->_M_right;
  188.   __x->_M_right = __y->_M_left;
  189.   if (__y->_M_left !=0)
  190.     __y->_M_left->_M_parent = __x;
  191.   __y->_M_parent = __x->_M_parent;
  192.   if (__x == __root)
  193.     __root = __y;
  194.   else if (__x == __x->_M_parent->_M_left)
  195.     __x->_M_parent->_M_left = __y;
  196.   else
  197.     __x->_M_parent->_M_right = __y;
  198.   __y->_M_left = __x;
  199.   __x->_M_parent = __y;
  200. }
  201. inline void 
  202. _Rb_tree_rotate_right(_Rb_tree_node_base* __x, _Rb_tree_node_base*& __root)
  203. {
  204.   _Rb_tree_node_base* __y = __x->_M_left;
  205.   __x->_M_left = __y->_M_right;
  206.   if (__y->_M_right != 0)
  207.     __y->_M_right->_M_parent = __x;
  208.   __y->_M_parent = __x->_M_parent;
  209.   if (__x == __root)
  210.     __root = __y;
  211.   else if (__x == __x->_M_parent->_M_right)
  212.     __x->_M_parent->_M_right = __y;
  213.   else
  214.     __x->_M_parent->_M_left = __y;
  215.   __y->_M_right = __x;
  216.   __x->_M_parent = __y;
  217. }
  218. inline void 
  219. _Rb_tree_rebalance(_Rb_tree_node_base* __x, _Rb_tree_node_base*& __root)
  220. {
  221.   __x->_M_color = _S_rb_tree_red;
  222.   while (__x != __root && __x->_M_parent->_M_color == _S_rb_tree_red) {
  223.     if (__x->_M_parent == __x->_M_parent->_M_parent->_M_left) {
  224.       _Rb_tree_node_base* __y = __x->_M_parent->_M_parent->_M_right;
  225.       if (__y && __y->_M_color == _S_rb_tree_red) {
  226.         __x->_M_parent->_M_color = _S_rb_tree_black;
  227.         __y->_M_color = _S_rb_tree_black;
  228.         __x->_M_parent->_M_parent->_M_color = _S_rb_tree_red;
  229.         __x = __x->_M_parent->_M_parent;
  230.       }
  231.       else {
  232.         if (__x == __x->_M_parent->_M_right) {
  233.           __x = __x->_M_parent;
  234.           _Rb_tree_rotate_left(__x, __root);
  235.         }
  236.         __x->_M_parent->_M_color = _S_rb_tree_black;
  237.         __x->_M_parent->_M_parent->_M_color = _S_rb_tree_red;
  238.         _Rb_tree_rotate_right(__x->_M_parent->_M_parent, __root);
  239.       }
  240.     }
  241.     else {
  242.       _Rb_tree_node_base* __y = __x->_M_parent->_M_parent->_M_left;
  243.       if (__y && __y->_M_color == _S_rb_tree_red) {
  244.         __x->_M_parent->_M_color = _S_rb_tree_black;
  245.         __y->_M_color = _S_rb_tree_black;
  246.         __x->_M_parent->_M_parent->_M_color = _S_rb_tree_red;
  247.         __x = __x->_M_parent->_M_parent;
  248.       }
  249.       else {
  250.         if (__x == __x->_M_parent->_M_left) {
  251.           __x = __x->_M_parent;
  252.           _Rb_tree_rotate_right(__x, __root);
  253.         }
  254.         __x->_M_parent->_M_color = _S_rb_tree_black;
  255.         __x->_M_parent->_M_parent->_M_color = _S_rb_tree_red;
  256.         _Rb_tree_rotate_left(__x->_M_parent->_M_parent, __root);
  257.       }
  258.     }
  259.   }
  260.   __root->_M_color = _S_rb_tree_black;
  261. }
  262. inline _Rb_tree_node_base*
  263. _Rb_tree_rebalance_for_erase(_Rb_tree_node_base* __z,
  264.                              _Rb_tree_node_base*& __root,
  265.                              _Rb_tree_node_base*& __leftmost,
  266.                              _Rb_tree_node_base*& __rightmost)
  267. {
  268.   _Rb_tree_node_base* __y = __z;
  269.   _Rb_tree_node_base* __x = 0;
  270.   _Rb_tree_node_base* __x_parent = 0;
  271.   if (__y->_M_left == 0)     // __z has at most one non-null child. y == z.
  272.     __x = __y->_M_right;     // __x might be null.
  273.   else
  274.     if (__y->_M_right == 0)  // __z has exactly one non-null child. y == z.
  275.       __x = __y->_M_left;    // __x is not null.
  276.     else {                   // __z has two non-null children.  Set __y to
  277.       __y = __y->_M_right;   //   __z's successor.  __x might be null.
  278.       while (__y->_M_left != 0)
  279.         __y = __y->_M_left;
  280.       __x = __y->_M_right;
  281.     }
  282.   if (__y != __z) {          // relink y in place of z.  y is z's successor
  283.     __z->_M_left->_M_parent = __y; 
  284.     __y->_M_left = __z->_M_left;
  285.     if (__y != __z->_M_right) {
  286.       __x_parent = __y->_M_parent;
  287.       if (__x) __x->_M_parent = __y->_M_parent;
  288.       __y->_M_parent->_M_left = __x;      // __y must be a child of _M_left
  289.       __y->_M_right = __z->_M_right;
  290.       __z->_M_right->_M_parent = __y;
  291.     }
  292.     else
  293.       __x_parent = __y;  
  294.     if (__root == __z)
  295.       __root = __y;
  296.     else if (__z->_M_parent->_M_left == __z)
  297.       __z->_M_parent->_M_left = __y;
  298.     else 
  299.       __z->_M_parent->_M_right = __y;
  300.     __y->_M_parent = __z->_M_parent;
  301.     __STD::swap(__y->_M_color, __z->_M_color);
  302.     __y = __z;
  303.     // __y now points to node to be actually deleted
  304.   }
  305.   else {                        // __y == __z
  306.     __x_parent = __y->_M_parent;
  307.     if (__x) __x->_M_parent = __y->_M_parent;   
  308.     if (__root == __z)
  309.       __root = __x;
  310.     else 
  311.       if (__z->_M_parent->_M_left == __z)
  312.         __z->_M_parent->_M_left = __x;
  313.       else
  314.         __z->_M_parent->_M_right = __x;
  315.     if (__leftmost == __z) 
  316.       if (__z->_M_right == 0)        // __z->_M_left must be null also
  317.         __leftmost = __z->_M_parent;
  318.     // makes __leftmost == _M_header if __z == __root
  319.       else
  320.         __leftmost = _Rb_tree_node_base::_S_minimum(__x);
  321.     if (__rightmost == __z)  
  322.       if (__z->_M_left == 0)         // __z->_M_right must be null also
  323.         __rightmost = __z->_M_parent;  
  324.     // makes __rightmost == _M_header if __z == __root
  325.       else                      // __x == __z->_M_left
  326.         __rightmost = _Rb_tree_node_base::_S_maximum(__x);
  327.   }
  328.   if (__y->_M_color != _S_rb_tree_red) { 
  329.     while (__x != __root && (__x == 0 || __x->_M_color == _S_rb_tree_black))
  330.       if (__x == __x_parent->_M_left) {
  331.         _Rb_tree_node_base* __w = __x_parent->_M_right;
  332.         if (__w->_M_color == _S_rb_tree_red) {
  333.           __w->_M_color = _S_rb_tree_black;
  334.           __x_parent->_M_color = _S_rb_tree_red;
  335.           _Rb_tree_rotate_left(__x_parent, __root);
  336.           __w = __x_parent->_M_right;
  337.         }
  338.         if ((__w->_M_left == 0 || 
  339.              __w->_M_left->_M_color == _S_rb_tree_black) &&
  340.             (__w->_M_right == 0 || 
  341.              __w->_M_right->_M_color == _S_rb_tree_black)) {
  342.           __w->_M_color = _S_rb_tree_red;
  343.           __x = __x_parent;
  344.           __x_parent = __x_parent->_M_parent;
  345.         } else {
  346.           if (__w->_M_right == 0 || 
  347.               __w->_M_right->_M_color == _S_rb_tree_black) {
  348.             if (__w->_M_left) __w->_M_left->_M_color = _S_rb_tree_black;
  349.             __w->_M_color = _S_rb_tree_red;
  350.             _Rb_tree_rotate_right(__w, __root);
  351.             __w = __x_parent->_M_right;
  352.           }
  353.           __w->_M_color = __x_parent->_M_color;
  354.           __x_parent->_M_color = _S_rb_tree_black;
  355.           if (__w->_M_right) __w->_M_right->_M_color = _S_rb_tree_black;
  356.           _Rb_tree_rotate_left(__x_parent, __root);
  357.           break;
  358.         }
  359.       } else {                  // same as above, with _M_right <-> _M_left.
  360.         _Rb_tree_node_base* __w = __x_parent->_M_left;
  361.         if (__w->_M_color == _S_rb_tree_red) {
  362.           __w->_M_color = _S_rb_tree_black;
  363.           __x_parent->_M_color = _S_rb_tree_red;
  364.           _Rb_tree_rotate_right(__x_parent, __root);
  365.           __w = __x_parent->_M_left;
  366.         }
  367.         if ((__w->_M_right == 0 || 
  368.              __w->_M_right->_M_color == _S_rb_tree_black) &&
  369.             (__w->_M_left == 0 || 
  370.              __w->_M_left->_M_color == _S_rb_tree_black)) {
  371.           __w->_M_color = _S_rb_tree_red;
  372.           __x = __x_parent;
  373.           __x_parent = __x_parent->_M_parent;
  374.         } else {
  375.           if (__w->_M_left == 0 || 
  376.               __w->_M_left->_M_color == _S_rb_tree_black) {
  377.             if (__w->_M_right) __w->_M_right->_M_color = _S_rb_tree_black;
  378.             __w->_M_color = _S_rb_tree_red;
  379.             _Rb_tree_rotate_left(__w, __root);
  380.             __w = __x_parent->_M_left;
  381.           }
  382.           __w->_M_color = __x_parent->_M_color;
  383.           __x_parent->_M_color = _S_rb_tree_black;
  384.           if (__w->_M_left) __w->_M_left->_M_color = _S_rb_tree_black;
  385.           _Rb_tree_rotate_right(__x_parent, __root);
  386.           break;
  387.         }
  388.       }
  389.     if (__x) __x->_M_color = _S_rb_tree_black;
  390.   }
  391.   return __y;
  392. }
  393. // Base class to encapsulate the differences between old SGI-style
  394. // allocators and standard-conforming allocators.  In order to avoid
  395. // having an empty base class, we arbitrarily move one of rb_tree's
  396. // data members into the base class.
  397. #ifdef __STL_USE_STD_ALLOCATORS
  398. // _Base for general standard-conforming allocators.
  399. template <class _Tp, class _Alloc, bool _S_instanceless>
  400. class _Rb_tree_alloc_base {
  401. public:
  402.   typedef typename _Alloc_traits<_Tp, _Alloc>::allocator_type allocator_type;
  403.   allocator_type get_allocator() const { return _M_node_allocator; }
  404.   _Rb_tree_alloc_base(const allocator_type& __a)
  405.     : _M_node_allocator(__a), _M_header(0) {}
  406. protected:
  407.   typename _Alloc_traits<_Rb_tree_node<_Tp>, _Alloc>::allocator_type
  408.            _M_node_allocator;
  409.   _Rb_tree_node<_Tp>* _M_header;
  410.   _Rb_tree_node<_Tp>* _M_get_node() 
  411.     { return _M_node_allocator.allocate(1); }
  412.   void _M_put_node(_Rb_tree_node<_Tp>* __p) 
  413.     { _M_node_allocator.deallocate(__p, 1); }
  414. };
  415. // Specialization for instanceless allocators.
  416. template <class _Tp, class _Alloc>
  417. class _Rb_tree_alloc_base<_Tp, _Alloc, true> {
  418. public:
  419.   typedef typename _Alloc_traits<_Tp, _Alloc>::allocator_type allocator_type;
  420.   allocator_type get_allocator() const { return allocator_type(); }
  421.   _Rb_tree_alloc_base(const allocator_type&) : _M_header(0) {}
  422. protected:
  423.   _Rb_tree_node<_Tp>* _M_header;
  424.   typedef typename _Alloc_traits<_Rb_tree_node<_Tp>, _Alloc>::_Alloc_type
  425.           _Alloc_type;
  426.   _Rb_tree_node<_Tp>* _M_get_node()
  427.     { return _Alloc_type::allocate(1); }
  428.   void _M_put_node(_Rb_tree_node<_Tp>* __p)
  429.     { _Alloc_type::deallocate(__p, 1); }
  430. };
  431. template <class _Tp, class _Alloc>
  432. struct _Rb_tree_base
  433.   : public _Rb_tree_alloc_base<_Tp, _Alloc,
  434.                                _Alloc_traits<_Tp, _Alloc>::_S_instanceless>
  435. {
  436.   typedef _Rb_tree_alloc_base<_Tp, _Alloc,
  437.                               _Alloc_traits<_Tp, _Alloc>::_S_instanceless>
  438.           _Base;
  439.   typedef typename _Base::allocator_type allocator_type;
  440.   _Rb_tree_base(const allocator_type& __a) 
  441.     : _Base(__a) { _M_header = _M_get_node(); }
  442.   ~_Rb_tree_base() { _M_put_node(_M_header); }
  443. };
  444. #else /* __STL_USE_STD_ALLOCATORS */
  445. template <class _Tp, class _Alloc>
  446. struct _Rb_tree_base
  447. {
  448.   typedef _Alloc allocator_type;
  449.   allocator_type get_allocator() const { return allocator_type(); }
  450.   _Rb_tree_base(const allocator_type&) 
  451.     : _M_header(0) { _M_header = _M_get_node(); }
  452.   ~_Rb_tree_base() { _M_put_node(_M_header); }
  453. protected:
  454.   _Rb_tree_node<_Tp>* _M_header;
  455.   typedef simple_alloc<_Rb_tree_node<_Tp>, _Alloc> _Alloc_type;
  456.   _Rb_tree_node<_Tp>* _M_get_node()
  457.     { return _Alloc_type::allocate(1); }
  458.   void _M_put_node(_Rb_tree_node<_Tp>* __p)
  459.     { _Alloc_type::deallocate(__p, 1); }
  460. };
  461. #endif /* __STL_USE_STD_ALLOCATORS */
  462. template <class _Key, class _Value, class _KeyOfValue, class _Compare,
  463.           class _Alloc = __STL_DEFAULT_ALLOCATOR(_Value) >
  464. class _Rb_tree : protected _Rb_tree_base<_Value, _Alloc> {
  465.   typedef _Rb_tree_base<_Value, _Alloc> _Base;
  466. protected:
  467.   typedef _Rb_tree_node_base* _Base_ptr;
  468.   typedef _Rb_tree_node<_Value> _Rb_tree_node;
  469.   typedef _Rb_tree_Color_type _Color_type;
  470. public:
  471.   typedef _Key key_type;
  472.   typedef _Value value_type;
  473.   typedef value_type* pointer;
  474.   typedef const value_type* const_pointer;
  475.   typedef value_type& reference;
  476.   typedef const value_type& const_reference;
  477.   typedef _Rb_tree_node* _Link_type;
  478.   typedef size_t size_type;
  479.   typedef ptrdiff_t difference_type;
  480.   typedef typename _Base::allocator_type allocator_type;
  481.   allocator_type get_allocator() const { return _Base::get_allocator(); }
  482. protected:
  483. #ifdef __STL_USE_NAMESPACES
  484.   using _Base::_M_get_node;
  485.   using _Base::_M_put_node;
  486.   using _Base::_M_header;
  487. #endif /* __STL_USE_NAMESPACES */
  488. protected:
  489.   _Link_type _M_create_node(const value_type& __x)
  490.   {
  491.     _Link_type __tmp = _M_get_node();
  492.     __STL_TRY {
  493.       construct(&__tmp->_M_value_field, __x);
  494.     }
  495.     __STL_UNWIND(_M_put_node(__tmp));
  496.     return __tmp;
  497.   }
  498.   _Link_type _M_clone_node(_Link_type __x)
  499.   {
  500.     _Link_type __tmp = _M_create_node(__x->_M_value_field);
  501.     __tmp->_M_color = __x->_M_color;
  502.     __tmp->_M_left = 0;
  503.     __tmp->_M_right = 0;
  504.     return __tmp;
  505.   }
  506.   void destroy_node(_Link_type __p)
  507.   {
  508.     destroy(&__p->_M_value_field);
  509.     _M_put_node(__p);
  510.   }
  511. protected:
  512.   size_type _M_node_count; // keeps track of size of tree
  513.   _Compare _M_key_compare;
  514.   _Link_type& _M_root() const 
  515.     { return (_Link_type&) _M_header->_M_parent; }
  516.   _Link_type& _M_leftmost() const 
  517.     { return (_Link_type&) _M_header->_M_left; }
  518.   _Link_type& _M_rightmost() const 
  519.     { return (_Link_type&) _M_header->_M_right; }
  520.   static _Link_type& _S_left(_Link_type __x)
  521.     { return (_Link_type&)(__x->_M_left); }
  522.   static _Link_type& _S_right(_Link_type __x)
  523.     { return (_Link_type&)(__x->_M_right); }
  524.   static _Link_type& _S_parent(_Link_type __x)
  525.     { return (_Link_type&)(__x->_M_parent); }
  526.   static reference _S_value(_Link_type __x)
  527.     { return __x->_M_value_field; }
  528.   static const _Key& _S_key(_Link_type __x)
  529.     { return _KeyOfValue()(_S_value(__x)); }
  530.   static _Color_type& _S_color(_Link_type __x)
  531.     { return (_Color_type&)(__x->_M_color); }
  532.   static _Link_type& _S_left(_Base_ptr __x)
  533.     { return (_Link_type&)(__x->_M_left); }
  534.   static _Link_type& _S_right(_Base_ptr __x)
  535.     { return (_Link_type&)(__x->_M_right); }
  536.   static _Link_type& _S_parent(_Base_ptr __x)
  537.     { return (_Link_type&)(__x->_M_parent); }
  538.   static reference _S_value(_Base_ptr __x)
  539.     { return ((_Link_type)__x)->_M_value_field; }
  540.   static const _Key& _S_key(_Base_ptr __x)
  541.     { return _KeyOfValue()(_S_value(_Link_type(__x)));} 
  542.   static _Color_type& _S_color(_Base_ptr __x)
  543.     { return (_Color_type&)(_Link_type(__x)->_M_color); }
  544.   static _Link_type _S_minimum(_Link_type __x) 
  545.     { return (_Link_type)  _Rb_tree_node_base::_S_minimum(__x); }
  546.   static _Link_type _S_maximum(_Link_type __x)
  547.     { return (_Link_type) _Rb_tree_node_base::_S_maximum(__x); }
  548. public:
  549.   typedef _Rb_tree_iterator<value_type, reference, pointer> iterator;
  550.   typedef _Rb_tree_iterator<value_type, const_reference, const_pointer> 
  551.           const_iterator;
  552. #ifdef __STL_CLASS_PARTIAL_SPECIALIZATION
  553.   typedef reverse_iterator<const_iterator> const_reverse_iterator;
  554.   typedef reverse_iterator<iterator> reverse_iterator;
  555. #else /* __STL_CLASS_PARTIAL_SPECIALIZATION */
  556.   typedef reverse_bidirectional_iterator<iterator, value_type, reference,
  557.                                          difference_type>
  558.           reverse_iterator; 
  559.   typedef reverse_bidirectional_iterator<const_iterator, value_type,
  560.                                          const_reference, difference_type>
  561.           const_reverse_iterator;
  562. #endif /* __STL_CLASS_PARTIAL_SPECIALIZATION */ 
  563. private:
  564.   iterator _M_insert(_Base_ptr __x, _Base_ptr __y, const value_type& __v);
  565.   _Link_type _M_copy(_Link_type __x, _Link_type __p);
  566.   void _M_erase(_Link_type __x);
  567. public:
  568.                                 // allocation/deallocation
  569.   _Rb_tree()
  570.     : _Base(allocator_type()), _M_node_count(0), _M_key_compare()
  571.     { _M_empty_initialize(); }
  572.   _Rb_tree(const _Compare& __comp)
  573.     : _Base(allocator_type()), _M_node_count(0), _M_key_compare(__comp) 
  574.     { _M_empty_initialize(); }
  575.   _Rb_tree(const _Compare& __comp, const allocator_type& __a)
  576.     : _Base(__a), _M_node_count(0), _M_key_compare(__comp) 
  577.     { _M_empty_initialize(); }
  578.   _Rb_tree(const _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __x) 
  579.     : _Base(__x.get_allocator()),
  580.       _M_node_count(0), _M_key_compare(__x._M_key_compare)
  581.   { 
  582.     if (__x._M_root() == 0)
  583.       _M_empty_initialize();
  584.     else {
  585.       _S_color(_M_header) = _S_rb_tree_red;
  586.       _M_root() = _M_copy(__x._M_root(), _M_header);
  587.       _M_leftmost() = _S_minimum(_M_root());
  588.       _M_rightmost() = _S_maximum(_M_root());
  589.     }
  590.     _M_node_count = __x._M_node_count;
  591.   }
  592.   ~_Rb_tree() { clear(); }
  593.   _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& 
  594.   operator=(const _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __x);
  595. private:
  596.   void _M_empty_initialize() {
  597.     _S_color(_M_header) = _S_rb_tree_red; // used to distinguish header from 
  598.                                           // __root, in iterator.operator++
  599.     _M_root() = 0;
  600.     _M_leftmost() = _M_header;
  601.     _M_rightmost() = _M_header;
  602.   }
  603. public:    
  604.                                 // accessors:
  605.   _Compare key_comp() const { return _M_key_compare; }
  606.   iterator begin() { return _M_leftmost(); }
  607.   const_iterator begin() const { return _M_leftmost(); }
  608.   iterator end() { return _M_header; }
  609.   const_iterator end() const { return _M_header; }
  610.   reverse_iterator rbegin() { return reverse_iterator(end()); }
  611.   const_reverse_iterator rbegin() const { 
  612.     return const_reverse_iterator(end()); 
  613.   }
  614.   reverse_iterator rend() { return reverse_iterator(begin()); }
  615.   const_reverse_iterator rend() const { 
  616.     return const_reverse_iterator(begin());
  617.   } 
  618.   bool empty() const { return _M_node_count == 0; }
  619.   size_type size() const { return _M_node_count; }
  620.   size_type max_size() const { return size_type(-1); }
  621.   void swap(_Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __t) {
  622.     __STD::swap(_M_header, __t._M_header);
  623.     __STD::swap(_M_node_count, __t._M_node_count);
  624.     __STD::swap(_M_key_compare, __t._M_key_compare);
  625.   }
  626.     
  627. public:
  628.                                 // insert/erase
  629.   pair<iterator,bool> insert_unique(const value_type& __x);
  630.   iterator insert_equal(const value_type& __x);
  631.   iterator insert_unique(iterator __position, const value_type& __x);
  632.   iterator insert_equal(iterator __position, const value_type& __x);
  633. #ifdef __STL_MEMBER_TEMPLATES  
  634.   template <class _InputIterator>
  635.   void insert_unique(_InputIterator __first, _InputIterator __last);
  636.   template <class _InputIterator>
  637.   void insert_equal(_InputIterator __first, _InputIterator __last);
  638. #else /* __STL_MEMBER_TEMPLATES */
  639.   void insert_unique(const_iterator __first, const_iterator __last);
  640.   void insert_unique(const value_type* __first, const value_type* __last);
  641.   void insert_equal(const_iterator __first, const_iterator __last);
  642.   void insert_equal(const value_type* __first, const value_type* __last);
  643. #endif /* __STL_MEMBER_TEMPLATES */
  644.   void erase(iterator __position);
  645.   size_type erase(const key_type& __x);
  646.   void erase(iterator __first, iterator __last);
  647.   void erase(const key_type* __first, const key_type* __last);
  648.   void clear() {
  649.     if (_M_node_count != 0) {
  650.       _M_erase(_M_root());
  651.       _M_leftmost() = _M_header;
  652.       _M_root() = 0;
  653.       _M_rightmost() = _M_header;
  654.       _M_node_count = 0;
  655.     }
  656.   }      
  657. public:
  658.                                 // set operations:
  659.   iterator find(const key_type& __x);
  660.   const_iterator find(const key_type& __x) const;
  661.   size_type count(const key_type& __x) const;
  662.   iterator lower_bound(const key_type& __x);
  663.   const_iterator lower_bound(const key_type& __x) const;
  664.   iterator upper_bound(const key_type& __x);
  665.   const_iterator upper_bound(const key_type& __x) const;
  666.   pair<iterator,iterator> equal_range(const key_type& __x);
  667.   pair<const_iterator, const_iterator> equal_range(const key_type& __x) const;
  668. public:
  669.                                 // Debugging.
  670.   bool __rb_verify() const;
  671. };
  672. template <class _Key, class _Value, class _KeyOfValue, 
  673.           class _Compare, class _Alloc>
  674. inline bool 
  675. operator==(const _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __x, 
  676.            const _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __y)
  677. {
  678.   return __x.size() == __y.size() &&
  679.          equal(__x.begin(), __x.end(), __y.begin());
  680. }
  681. template <class _Key, class _Value, class _KeyOfValue, 
  682.           class _Compare, class _Alloc>
  683. inline bool 
  684. operator<(const _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __x, 
  685.           const _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __y)
  686. {
  687.   return lexicographical_compare(__x.begin(), __x.end(), 
  688.                                  __y.begin(), __y.end());
  689. }
  690. #ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER
  691. template <class _Key, class _Value, class _KeyOfValue, 
  692.           class _Compare, class _Alloc>
  693. inline bool 
  694. operator!=(const _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __x, 
  695.            const _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __y) {
  696.   return !(__x == __y);
  697. }
  698. template <class _Key, class _Value, class _KeyOfValue, 
  699.           class _Compare, class _Alloc>
  700. inline bool 
  701. operator>(const _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __x, 
  702.           const _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __y) {
  703.   return __y < __x;
  704. }
  705. template <class _Key, class _Value, class _KeyOfValue, 
  706.           class _Compare, class _Alloc>
  707. inline bool 
  708. operator<=(const _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __x, 
  709.            const _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __y) {
  710.   return !(__y < __x);
  711. }
  712. template <class _Key, class _Value, class _KeyOfValue, 
  713.           class _Compare, class _Alloc>
  714. inline bool 
  715. operator>=(const _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __x, 
  716.            const _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __y) {
  717.   return !(__x < __y);
  718. }
  719. template <class _Key, class _Value, class _KeyOfValue, 
  720.           class _Compare, class _Alloc>
  721. inline void 
  722. swap(_Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __x, 
  723.      _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __y)
  724. {
  725.   __x.swap(__y);
  726. }
  727. #endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */
  728. template <class _Key, class _Value, class _KeyOfValue, 
  729.           class _Compare, class _Alloc>
  730. _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& 
  731. _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>
  732.   ::operator=(const _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>& __x)
  733. {
  734.   if (this != &__x) {
  735.                                 // Note that _Key may be a constant type.
  736.     clear();
  737.     _M_node_count = 0;
  738.     _M_key_compare = __x._M_key_compare;        
  739.     if (__x._M_root() == 0) {
  740.       _M_root() = 0;
  741.       _M_leftmost() = _M_header;
  742.       _M_rightmost() = _M_header;
  743.     }
  744.     else {
  745.       _M_root() = _M_copy(__x._M_root(), _M_header);
  746.       _M_leftmost() = _S_minimum(_M_root());
  747.       _M_rightmost() = _S_maximum(_M_root());
  748.       _M_node_count = __x._M_node_count;
  749.     }
  750.   }
  751.   return *this;
  752. }
  753. template <class _Key, class _Value, class _KeyOfValue, 
  754.           class _Compare, class _Alloc>
  755. typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::iterator
  756. _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>
  757.   ::_M_insert(_Base_ptr __x_, _Base_ptr __y_, const _Value& __v)
  758. {
  759.   _Link_type __x = (_Link_type) __x_;
  760.   _Link_type __y = (_Link_type) __y_;
  761.   _Link_type __z;
  762.   if (__y == _M_header || __x != 0 || 
  763.       _M_key_compare(_KeyOfValue()(__v), _S_key(__y))) {
  764.     __z = _M_create_node(__v);
  765.     _S_left(__y) = __z;               // also makes _M_leftmost() = __z 
  766.                                       //    when __y == _M_header
  767.     if (__y == _M_header) {
  768.       _M_root() = __z;
  769.       _M_rightmost() = __z;
  770.     }
  771.     else if (__y == _M_leftmost())
  772.       _M_leftmost() = __z;   // maintain _M_leftmost() pointing to min node
  773.   }
  774.   else {
  775.     __z = _M_create_node(__v);
  776.     _S_right(__y) = __z;
  777.     if (__y == _M_rightmost())
  778.       _M_rightmost() = __z;  // maintain _M_rightmost() pointing to max node
  779.   }
  780.   _S_parent(__z) = __y;
  781.   _S_left(__z) = 0;
  782.   _S_right(__z) = 0;
  783.   _Rb_tree_rebalance(__z, _M_header->_M_parent);
  784.   ++_M_node_count;
  785.   return iterator(__z);
  786. }
  787. template <class _Key, class _Value, class _KeyOfValue, 
  788.           class _Compare, class _Alloc>
  789. typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::iterator
  790. _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>
  791.   ::insert_equal(const _Value& __v)
  792. {
  793.   _Link_type __y = _M_header;
  794.   _Link_type __x = _M_root();
  795.   while (__x != 0) {
  796.     __y = __x;
  797.     __x = _M_key_compare(_KeyOfValue()(__v), _S_key(__x)) ? 
  798.             _S_left(__x) : _S_right(__x);
  799.   }
  800.   return _M_insert(__x, __y, __v);
  801. }
  802. template <class _Key, class _Value, class _KeyOfValue, 
  803.           class _Compare, class _Alloc>
  804. pair<typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::iterator, 
  805.      bool>
  806. _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>
  807.   ::insert_unique(const _Value& __v)
  808. {
  809.   _Link_type __y = _M_header;
  810.   _Link_type __x = _M_root();
  811.   bool __comp = true;
  812.   while (__x != 0) {
  813.     __y = __x;
  814.     __comp = _M_key_compare(_KeyOfValue()(__v), _S_key(__x));
  815.     __x = __comp ? _S_left(__x) : _S_right(__x);
  816.   }
  817.   iterator __j = iterator(__y);   
  818.   if (__comp)
  819.     if (__j == begin())     
  820.       return pair<iterator,bool>(_M_insert(__x, __y, __v), true);
  821.     else
  822.       --__j;
  823.   if (_M_key_compare(_S_key(__j._M_node), _KeyOfValue()(__v)))
  824.     return pair<iterator,bool>(_M_insert(__x, __y, __v), true);
  825.   return pair<iterator,bool>(__j, false);
  826. }
  827. template <class _Key, class _Val, class _KeyOfValue, 
  828.           class _Compare, class _Alloc>
  829. typename _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator 
  830. _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>
  831.   ::insert_unique(iterator __position, const _Val& __v)
  832. {
  833.   if (__position._M_node == _M_header->_M_left) { // begin()
  834.     if (size() > 0 && 
  835.         _M_key_compare(_KeyOfValue()(__v), _S_key(__position._M_node)))
  836.       return _M_insert(__position._M_node, __position._M_node, __v);
  837.     // first argument just needs to be non-null 
  838.     else
  839.       return insert_unique(__v).first;
  840.   } else if (__position._M_node == _M_header) { // end()
  841.     if (_M_key_compare(_S_key(_M_rightmost()), _KeyOfValue()(__v)))
  842.       return _M_insert(0, _M_rightmost(), __v);
  843.     else
  844.       return insert_unique(__v).first;
  845.   } else {
  846.     iterator __before = __position;
  847.     --__before;
  848.     if (_M_key_compare(_S_key(__before._M_node), _KeyOfValue()(__v)) 
  849.         && _M_key_compare(_KeyOfValue()(__v), _S_key(__position._M_node))) {
  850.       if (_S_right(__before._M_node) == 0)
  851.         return _M_insert(0, __before._M_node, __v); 
  852.       else
  853.         return _M_insert(__position._M_node, __position._M_node, __v);
  854.     // first argument just needs to be non-null 
  855.     } else
  856.       return insert_unique(__v).first;
  857.   }
  858. }
  859. template <class _Key, class _Val, class _KeyOfValue, 
  860.           class _Compare, class _Alloc>
  861. typename _Rb_tree<_Key,_Val,_KeyOfValue,_Compare,_Alloc>::iterator 
  862. _Rb_tree<_Key,_Val,_KeyOfValue,_Compare,_Alloc>
  863.   ::insert_equal(iterator __position, const _Val& __v)
  864. {
  865.   if (__position._M_node == _M_header->_M_left) { // begin()
  866.     if (size() > 0 && 
  867.         !_M_key_compare(_S_key(__position._M_node), _KeyOfValue()(__v)))
  868.       return _M_insert(__position._M_node, __position._M_node, __v);
  869.     // first argument just needs to be non-null 
  870.     else
  871.       return insert_equal(__v);
  872.   } else if (__position._M_node == _M_header) {// end()
  873.     if (!_M_key_compare(_KeyOfValue()(__v), _S_key(_M_rightmost())))
  874.       return _M_insert(0, _M_rightmost(), __v);
  875.     else
  876.       return insert_equal(__v);
  877.   } else {
  878.     iterator __before = __position;
  879.     --__before;
  880.     if (!_M_key_compare(_KeyOfValue()(__v), _S_key(__before._M_node))
  881.         && !_M_key_compare(_S_key(__position._M_node), _KeyOfValue()(__v))) {
  882.       if (_S_right(__before._M_node) == 0)
  883.         return _M_insert(0, __before._M_node, __v); 
  884.       else
  885.         return _M_insert(__position._M_node, __position._M_node, __v);
  886.     // first argument just needs to be non-null 
  887.     } else
  888.       return insert_equal(__v);
  889.   }
  890. }
  891. #ifdef __STL_MEMBER_TEMPLATES  
  892. template <class _Key, class _Val, class _KoV, class _Cmp, class _Alloc>
  893.   template<class _II>
  894. void _Rb_tree<_Key,_Val,_KoV,_Cmp,_Alloc>
  895.   ::insert_equal(_II __first, _II __last)
  896. {
  897.   for ( ; __first != __last; ++__first)
  898.     insert_equal(*__first);
  899. }
  900. template <class _Key, class _Val, class _KoV, class _Cmp, class _Alloc> 
  901.   template<class _II>
  902. void _Rb_tree<_Key,_Val,_KoV,_Cmp,_Alloc>
  903.   ::insert_unique(_II __first, _II __last) {
  904.   for ( ; __first != __last; ++__first)
  905.     insert_unique(*__first);
  906. }
  907. #else /* __STL_MEMBER_TEMPLATES */
  908. template <class _Key, class _Val, class _KoV, class _Cmp, class _Alloc>
  909. void
  910. _Rb_tree<_Key,_Val,_KoV,_Cmp,_Alloc>
  911.   ::insert_equal(const _Val* __first, const _Val* __last)
  912. {
  913.   for ( ; __first != __last; ++__first)
  914.     insert_equal(*__first);
  915. }
  916. template <class _Key, class _Val, class _KoV, class _Cmp, class _Alloc>
  917. void
  918. _Rb_tree<_Key,_Val,_KoV,_Cmp,_Alloc>
  919.   ::insert_equal(const_iterator __first, const_iterator __last)
  920. {
  921.   for ( ; __first != __last; ++__first)
  922.     insert_equal(*__first);
  923. }
  924. template <class _Key, class _Val, class _KoV, class _Cmp, class _Alloc>
  925. void 
  926. _Rb_tree<_Key,_Val,_KoV,_Cmp,_Alloc>
  927.   ::insert_unique(const _Val* __first, const _Val* __last)
  928. {
  929.   for ( ; __first != __last; ++__first)
  930.     insert_unique(*__first);
  931. }
  932. template <class _Key, class _Val, class _KoV, class _Cmp, class _Alloc>
  933. void _Rb_tree<_Key,_Val,_KoV,_Cmp,_Alloc>
  934.   ::insert_unique(const_iterator __first, const_iterator __last)
  935. {
  936.   for ( ; __first != __last; ++__first)
  937.     insert_unique(*__first);
  938. }
  939. #endif /* __STL_MEMBER_TEMPLATES */
  940.          
  941. template <class _Key, class _Value, class _KeyOfValue, 
  942.           class _Compare, class _Alloc>
  943. inline void _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>
  944.   ::erase(iterator __position)
  945. {
  946.   _Link_type __y = 
  947.     (_Link_type) _Rb_tree_rebalance_for_erase(__position._M_node,
  948.                                               _M_header->_M_parent,
  949.                                               _M_header->_M_left,
  950.                                               _M_header->_M_right);
  951.   destroy_node(__y);
  952.   --_M_node_count;
  953. }
  954. template <class _Key, class _Value, class _KeyOfValue, 
  955.           class _Compare, class _Alloc>
  956. typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::size_type 
  957. _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::erase(const _Key& __x)
  958. {
  959.   pair<iterator,iterator> __p = equal_range(__x);
  960.   size_type __n = 0;
  961.   distance(__p.first, __p.second, __n);
  962.   erase(__p.first, __p.second);
  963.   return __n;
  964. }
  965. template <class _Key, class _Val, class _KoV, class _Compare, class _Alloc>
  966. typename _Rb_tree<_Key, _Val, _KoV, _Compare, _Alloc>::_Link_type 
  967. _Rb_tree<_Key,_Val,_KoV,_Compare,_Alloc>
  968.   ::_M_copy(_Link_type __x, _Link_type __p)
  969. {
  970.                         // structural copy.  __x and __p must be non-null.
  971.   _Link_type __top = _M_clone_node(__x);
  972.   __top->_M_parent = __p;
  973.  
  974.   __STL_TRY {
  975.     if (__x->_M_right)
  976.       __top->_M_right = _M_copy(_S_right(__x), __top);
  977.     __p = __top;
  978.     __x = _S_left(__x);
  979.     while (__x != 0) {
  980.       _Link_type __y = _M_clone_node(__x);
  981.       __p->_M_left = __y;
  982.       __y->_M_parent = __p;
  983.       if (__x->_M_right)
  984.         __y->_M_right = _M_copy(_S_right(__x), __y);
  985.       __p = __y;
  986.       __x = _S_left(__x);
  987.     }
  988.   }
  989.   __STL_UNWIND(_M_erase(__top));
  990.   return __top;
  991. }
  992. template <class _Key, class _Value, class _KeyOfValue, 
  993.           class _Compare, class _Alloc>
  994. void _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>
  995.   ::_M_erase(_Link_type __x)
  996. {
  997.                                 // erase without rebalancing
  998.   while (__x != 0) {
  999.     _M_erase(_S_right(__x));
  1000.     _Link_type __y = _S_left(__x);
  1001.     destroy_node(__x);
  1002.     __x = __y;
  1003.   }
  1004. }
  1005. template <class _Key, class _Value, class _KeyOfValue, 
  1006.           class _Compare, class _Alloc>
  1007. void _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>
  1008.   ::erase(iterator __first, iterator __last)
  1009. {
  1010.   if (__first == begin() && __last == end())
  1011.     clear();
  1012.   else
  1013.     while (__first != __last) erase(__first++);
  1014. }
  1015. template <class _Key, class _Value, class _KeyOfValue, 
  1016.           class _Compare, class _Alloc>
  1017. void _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>
  1018.   ::erase(const _Key* __first, const _Key* __last) 
  1019. {
  1020.   while (__first != __last) erase(*__first++);
  1021. }
  1022. template <class _Key, class _Value, class _KeyOfValue, 
  1023.           class _Compare, class _Alloc>
  1024. typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::iterator 
  1025. _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::find(const _Key& __k)
  1026. {
  1027.   _Link_type __y = _M_header;      // Last node which is not less than __k. 
  1028.   _Link_type __x = _M_root();      // Current node. 
  1029.   while (__x != 0) 
  1030.     if (!_M_key_compare(_S_key(__x), __k))
  1031.       __y = __x, __x = _S_left(__x);
  1032.     else
  1033.       __x = _S_right(__x);
  1034.   iterator __j = iterator(__y);   
  1035.   return (__j == end() || _M_key_compare(__k, _S_key(__j._M_node))) ? 
  1036.      end() : __j;
  1037. }
  1038. template <class _Key, class _Value, class _KeyOfValue, 
  1039.           class _Compare, class _Alloc>
  1040. typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::const_iterator 
  1041. _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::find(const _Key& __k) const
  1042. {
  1043.   _Link_type __y = _M_header; /* Last node which is not less than __k. */
  1044.   _Link_type __x = _M_root(); /* Current node. */
  1045.   while (__x != 0) {
  1046.     if (!_M_key_compare(_S_key(__x), __k))
  1047.       __y = __x, __x = _S_left(__x);
  1048.     else
  1049.       __x = _S_right(__x);
  1050.   }
  1051.   const_iterator __j = const_iterator(__y);   
  1052.   return (__j == end() || _M_key_compare(__k, _S_key(__j._M_node))) ?
  1053.     end() : __j;
  1054. }
  1055. template <class _Key, class _Value, class _KeyOfValue, 
  1056.           class _Compare, class _Alloc>
  1057. typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::size_type 
  1058. _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>
  1059.   ::count(const _Key& __k) const
  1060. {
  1061.   pair<const_iterator, const_iterator> __p = equal_range(__k);
  1062.   size_type __n = 0;
  1063.   distance(__p.first, __p.second, __n);
  1064.   return __n;
  1065. }
  1066. template <class _Key, class _Value, class _KeyOfValue, 
  1067.           class _Compare, class _Alloc>
  1068. typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::iterator 
  1069. _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>
  1070.   ::lower_bound(const _Key& __k)
  1071. {
  1072.   _Link_type __y = _M_header; /* Last node which is not less than __k. */
  1073.   _Link_type __x = _M_root(); /* Current node. */
  1074.   while (__x != 0) 
  1075.     if (!_M_key_compare(_S_key(__x), __k))
  1076.       __y = __x, __x = _S_left(__x);
  1077.     else
  1078.       __x = _S_right(__x);
  1079.   return iterator(__y);
  1080. }
  1081. template <class _Key, class _Value, class _KeyOfValue, 
  1082.           class _Compare, class _Alloc>
  1083. typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::const_iterator 
  1084. _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>
  1085.   ::lower_bound(const _Key& __k) const
  1086. {
  1087.   _Link_type __y = _M_header; /* Last node which is not less than __k. */
  1088.   _Link_type __x = _M_root(); /* Current node. */
  1089.   while (__x != 0) 
  1090.     if (!_M_key_compare(_S_key(__x), __k))
  1091.       __y = __x, __x = _S_left(__x);
  1092.     else
  1093.       __x = _S_right(__x);
  1094.   return const_iterator(__y);
  1095. }
  1096. template <class _Key, class _Value, class _KeyOfValue, 
  1097.           class _Compare, class _Alloc>
  1098. typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::iterator 
  1099. _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>
  1100.   ::upper_bound(const _Key& __k)
  1101. {
  1102.   _Link_type __y = _M_header; /* Last node which is greater than __k. */
  1103.   _Link_type __x = _M_root(); /* Current node. */
  1104.    while (__x != 0) 
  1105.      if (_M_key_compare(__k, _S_key(__x)))
  1106.        __y = __x, __x = _S_left(__x);
  1107.      else
  1108.        __x = _S_right(__x);
  1109.    return iterator(__y);
  1110. }
  1111. template <class _Key, class _Value, class _KeyOfValue, 
  1112.           class _Compare, class _Alloc>
  1113. typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::const_iterator 
  1114. _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>
  1115.   ::upper_bound(const _Key& __k) const
  1116. {
  1117.   _Link_type __y = _M_header; /* Last node which is greater than __k. */
  1118.   _Link_type __x = _M_root(); /* Current node. */
  1119.    while (__x != 0) 
  1120.      if (_M_key_compare(__k, _S_key(__x)))
  1121.        __y = __x, __x = _S_left(__x);
  1122.      else
  1123.        __x = _S_right(__x);
  1124.    return const_iterator(__y);
  1125. }
  1126. template <class _Key, class _Value, class _KeyOfValue, 
  1127.           class _Compare, class _Alloc>
  1128. inline 
  1129. pair<typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::iterator,
  1130.      typename _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::iterator>
  1131. _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>
  1132.   ::equal_range(const _Key& __k)
  1133. {
  1134.   return pair<iterator, iterator>(lower_bound(__k), upper_bound(__k));
  1135. }
  1136. template <class _Key, class _Value, class _KoV, class _Compare, class _Alloc>
  1137. inline 
  1138. pair<typename _Rb_tree<_Key, _Value, _KoV, _Compare, _Alloc>::const_iterator,
  1139.      typename _Rb_tree<_Key, _Value, _KoV, _Compare, _Alloc>::const_iterator>
  1140. _Rb_tree<_Key, _Value, _KoV, _Compare, _Alloc>
  1141.   ::equal_range(const _Key& __k) const
  1142. {
  1143.   return pair<const_iterator,const_iterator>(lower_bound(__k),
  1144.                                              upper_bound(__k));
  1145. }
  1146. inline int 
  1147. __black_count(_Rb_tree_node_base* __node, _Rb_tree_node_base* __root)
  1148. {
  1149.   if (__node == 0)
  1150.     return 0;
  1151.   else {
  1152.     int __bc = __node->_M_color == _S_rb_tree_black ? 1 : 0;
  1153.     if (__node == __root)
  1154.       return __bc;
  1155.     else
  1156.       return __bc + __black_count(__node->_M_parent, __root);
  1157.   }
  1158. }
  1159. template <class _Key, class _Value, class _KeyOfValue, 
  1160.           class _Compare, class _Alloc>
  1161. bool _Rb_tree<_Key,_Value,_KeyOfValue,_Compare,_Alloc>::__rb_verify() const
  1162. {
  1163.   if (_M_node_count == 0 || begin() == end())
  1164.     return _M_node_count == 0 && begin() == end() &&
  1165.       _M_header->_M_left == _M_header && _M_header->_M_right == _M_header;
  1166.   
  1167.   int __len = __black_count(_M_leftmost(), _M_root());
  1168.   for (const_iterator __it = begin(); __it != end(); ++__it) {
  1169.     _Link_type __x = (_Link_type) __it._M_node;
  1170.     _Link_type __L = _S_left(__x);
  1171.     _Link_type __R = _S_right(__x);
  1172.     if (__x->_M_color == _S_rb_tree_red)
  1173.       if ((__L && __L->_M_color == _S_rb_tree_red) ||
  1174.           (__R && __R->_M_color == _S_rb_tree_red))
  1175.         return false;
  1176.     if (__L && _M_key_compare(_S_key(__x), _S_key(__L)))
  1177.       return false;
  1178.     if (__R && _M_key_compare(_S_key(__R), _S_key(__x)))
  1179.       return false;
  1180.     if (!__L && !__R && __black_count(__x, _M_root()) != __len)
  1181.       return false;
  1182.   }
  1183.   if (_M_leftmost() != _Rb_tree_node_base::_S_minimum(_M_root()))
  1184.     return false;
  1185.   if (_M_rightmost() != _Rb_tree_node_base::_S_maximum(_M_root()))
  1186.     return false;
  1187.   return true;
  1188. }
  1189. // Class rb_tree is not part of the C++ standard.  It is provided for
  1190. // compatibility with the HP STL.
  1191. template <class _Key, class _Value, class _KeyOfValue, class _Compare,
  1192.           class _Alloc = __STL_DEFAULT_ALLOCATOR(_Value) >
  1193. struct rb_tree : public _Rb_tree<_Key, _Value, _KeyOfValue, _Compare, _Alloc>
  1194. {
  1195.   typedef _Rb_tree<_Key, _Value, _KeyOfValue, _Compare, _Alloc> _Base;
  1196.   typedef typename _Base::allocator_type allocator_type;
  1197.   rb_tree(const _Compare& __comp = _Compare(),
  1198.           const allocator_type& __a = allocator_type())
  1199.     : _Base(__comp, __a) {}
  1200.   
  1201.   ~rb_tree() {}
  1202. };
  1203. #if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  1204. #pragma reset woff 1375
  1205. #endif
  1206. __STL_END_NAMESPACE 
  1207. #endif /* __SGI_STL_INTERNAL_TREE_H */
  1208. // Local Variables:
  1209. // mode:C++
  1210. // End: