⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 _tree.h

📁 symbian 上的stl_port进过编译的。
💻 H
📖 第 1 页 / 共 2 页
字号:
/* * * Copyright (c) 1994 * Hewlett-Packard Company * * Copyright (c) 1996,1997 * Silicon Graphics Computer Systems, Inc. * * Copyright (c) 1997 * Moscow Center for SPARC Technology * * Copyright (c) 1999 * Boris Fomitchev * * This material is provided "as is", with absolutely no warranty expressed * or implied. Any use is at your own risk. * * Permission to use or copy this software for any purpose is hereby granted * without fee, provided the above notices are retained on all copies. * Permission to modify the code and to distribute modified code is granted, * provided the above notices are retained, and a notice that the code was * modified is included with the above copyright notice. * *//* NOTE: This is an internal header file, included by other STL headers. *   You should not attempt to use it directly. */#ifndef _STLP_INTERNAL_TREE_H#define _STLP_INTERNAL_TREE_H/*Red-black tree class, designed for use in implementing STLassociative containers (set, multiset, map, and multimap). Theinsertion and deletion algorithms are based on those in Cormen,Leiserson, and Rivest, Introduction to Algorithms (MIT Press, 1990),except that(1) the header cell is maintained with links not only to the rootbut also to the leftmost node of the tree, to enable constant timebegin(), and to the rightmost node of the tree, to enable linear timeperformance when used with the generic set algorithms (set_union,etc.);(2) when a node being deleted has two children its successor node isrelinked into its place, rather than copied, so that the onlyiterators invalidated are those referring to the deleted node.*/#ifndef _STLP_INTERNAL_ALGOBASE_H#  include <stl/_algobase.h>#endif#ifndef _STLP_INTERNAL_ALLOC_H#  include <stl/_alloc.h>#endif#ifndef _STLP_INTERNAL_ITERATOR_H#  include <stl/_iterator.h>#endif#ifndef _STLP_INTERNAL_CONSTRUCT_H#  include <stl/_construct.h>#endif#ifndef _STLP_INTERNAL_FUNCTION_BASE_H#  include <stl/_function_base.h>#endif_STLP_BEGIN_NAMESPACE_STLP_MOVE_TO_PRIV_NAMESPACEtypedef bool _Rb_tree_Color_type;//const _Rb_tree_Color_type _S_rb_tree_red = false;//const _Rb_tree_Color_type _S_rb_tree_black = true;#define _S_rb_tree_red false#define _S_rb_tree_black truestruct _Rb_tree_node_base {  typedef _Rb_tree_Color_type _Color_type;  typedef _Rb_tree_node_base* _Base_ptr;  _Color_type _M_color;  _Base_ptr _M_parent;  _Base_ptr _M_left;  _Base_ptr _M_right;  static _Base_ptr _STLP_CALL _S_minimum(_Base_ptr __x) {    while (__x->_M_left != 0) __x = __x->_M_left;    return __x;  }  static _Base_ptr _STLP_CALL _S_maximum(_Base_ptr __x) {    while (__x->_M_right != 0) __x = __x->_M_right;    return __x;  }};template <class _Value>struct _Rb_tree_node : public _Rb_tree_node_base {  _Value _M_value_field;  __TRIVIAL_STUFF(_Rb_tree_node)};struct _Rb_tree_base_iterator;template <class _Dummy>class _Rb_global {public:  typedef _Rb_tree_node_base* _Base_ptr;  // those used to be global functions  static void _STLP_CALL _Rebalance(_Base_ptr __x, _Base_ptr& __root);  static _Base_ptr _STLP_CALL _Rebalance_for_erase(_Base_ptr __z,                                                   _Base_ptr& __root,                                                   _Base_ptr& __leftmost,                                                   _Base_ptr& __rightmost);  // those are from _Rb_tree_base_iterator - moved here to reduce code bloat  // moved here to reduce code bloat without templatizing _Rb_tree_base_iterator  static _Base_ptr  _STLP_CALL _M_increment (_Base_ptr);  static _Base_ptr  _STLP_CALL _M_decrement (_Base_ptr);  static void       _STLP_CALL _Rotate_left (_Base_ptr __x, _Base_ptr& __root);  static void       _STLP_CALL _Rotate_right(_Base_ptr __x, _Base_ptr& __root);};# if defined (_STLP_USE_TEMPLATE_EXPORT)_STLP_EXPORT_TEMPLATE_CLASS _Rb_global<bool>;# endiftypedef _Rb_global<bool> _Rb_global_inst;struct _Rb_tree_base_iterator {  typedef _Rb_tree_node_base*        _Base_ptr;  typedef bidirectional_iterator_tag iterator_category;  typedef ptrdiff_t                  difference_type;  _Base_ptr _M_node;  _Rb_tree_base_iterator() : _M_node(0) {}  _Rb_tree_base_iterator(_Base_ptr __x) : _M_node(__x) {}};template <class _Value, class _Traits>struct _Rb_tree_iterator : public _Rb_tree_base_iterator {  typedef _Value value_type;  typedef typename _Traits::reference  reference;  typedef typename _Traits::pointer    pointer;  typedef _Rb_tree_iterator<_Value, _Traits> _Self;  typedef _Rb_tree_node_base*    _Base_ptr;  typedef _Rb_tree_node<_Value>* _Link_type;  typedef typename _Traits::_NonConstTraits _NonConstTraits;  typedef _Rb_tree_iterator<_Value, _NonConstTraits> iterator;  typedef typename _Traits::_ConstTraits _ConstTraits;  typedef _Rb_tree_iterator<_Value, _ConstTraits> const_iterator;  _Rb_tree_iterator() {}#if !defined (_STLP_DEBUG)  /* In STL debug mode we need this constructor implicit for the pointer   * specialization implementation.   */  explicit#endif  _Rb_tree_iterator(_Base_ptr __x) : _Rb_tree_base_iterator(__x) {}  //copy constructor for iterator and constructor from iterator for const_iterator  _Rb_tree_iterator(const iterator& __it) : _Rb_tree_base_iterator(__it._M_node) {}  reference operator*() const {    return __STATIC_CAST(_Link_type, _M_node)->_M_value_field;  }  _STLP_DEFINE_ARROW_OPERATOR  _Self& operator++() {    _M_node = _Rb_global_inst::_M_increment(_M_node);    return *this;  }  _Self operator++(int) {    _Self __tmp = *this;    ++(*this);    return __tmp;  }  _Self& operator--() {    _M_node = _Rb_global_inst::_M_decrement(_M_node);    return *this;  }  _Self operator--(int) {    _Self __tmp = *this;    --(*this);    return __tmp;  }  bool operator == (const_iterator __rhs) const {    return _M_node == __rhs._M_node;  }  bool operator != (const_iterator __rhs) const {    return _M_node != __rhs._M_node;  }};#if defined (_STLP_CLASS_PARTIAL_SPECIALIZATION)_STLP_MOVE_TO_STD_NAMESPACEtemplate <class _Value, class _Traits>struct __type_traits<_STLP_PRIV _Rb_tree_iterator<_Value, _Traits> > {  typedef __false_type   has_trivial_default_constructor;  typedef __true_type    has_trivial_copy_constructor;  typedef __true_type    has_trivial_assignment_operator;  typedef __true_type    has_trivial_destructor;  typedef __false_type   is_POD_type;};_STLP_MOVE_TO_PRIV_NAMESPACE#endif /* _STLP_CLASS_PARTIAL_SPECIALIZATION */#if defined (_STLP_USE_OLD_HP_ITERATOR_QUERIES)_STLP_MOVE_TO_STD_NAMESPACEtemplate <class _Value, class _Traits>inline _Value* value_type(const _STLP_PRIV _Rb_tree_iterator<_Value, _Traits>&){ return (_Value*)0; }inline bidirectional_iterator_tag iterator_category(const _STLP_PRIV _Rb_tree_base_iterator&){ return bidirectional_iterator_tag(); }inline ptrdiff_t* distance_type(const _STLP_PRIV _Rb_tree_base_iterator&){ return (ptrdiff_t*) 0; }_STLP_MOVE_TO_PRIV_NAMESPACE#endif /* _STLP_CLASS_PARTIAL_SPECIALIZATION */// Base class to help EHtemplate <class _Tp, class _Alloc>class _Rb_tree_base {public:  typedef _Rb_tree_node_base _Node_base;  typedef _Rb_tree_node<_Tp> _Node;  _STLP_FORCE_ALLOCATORS(_Tp, _Alloc)  typedef typename _Alloc_traits<_Tp, _Alloc>::allocator_type allocator_type;private:  typedef _Rb_tree_base<_Tp, _Alloc> _Self;  typedef typename _Alloc_traits<_Node, _Alloc>::allocator_type _M_node_allocator_type;  typedef _STLP_alloc_proxy<_Node_base, _Node, _M_node_allocator_type> _AllocProxy;public:  allocator_type get_allocator() const {    return _STLP_CONVERT_ALLOCATOR(_M_header, _Tp);  }protected:  _Rb_tree_base(const allocator_type& __a) :    _M_header(_STLP_CONVERT_ALLOCATOR(__a, _Node), _Node_base() ) {    _M_empty_initialize();  }  _Rb_tree_base(__move_source<_Self> src) :    _M_header(__move_source<_AllocProxy>(src.get()._M_header)) {    _M_rebind(&src.get()._M_header._M_data);    src.get()._M_empty_initialize();  }  void _M_empty_initialize() {    _M_header._M_data._M_color = _S_rb_tree_red; // used to distinguish header from                                                 // __root, in iterator.operator++    _M_header._M_data._M_parent = 0;    _M_header._M_data._M_left = &_M_header._M_data;    _M_header._M_data._M_right = &_M_header._M_data;  }  void _M_rebind(_Node_base *__static_node) {    if (_M_header._M_data._M_parent != 0) {      _M_header._M_data._M_parent->_M_parent = &_M_header._M_data;    }    if (_M_header._M_data._M_right == __static_node) {      _M_header._M_data._M_right = &_M_header._M_data;    }    if (_M_header._M_data._M_left == __static_node) {      _M_header._M_data._M_left = &_M_header._M_data;    }  }  _AllocProxy _M_header;};#if defined (_STLP_DEBUG)#  define _Rb_tree _STLP_NON_DBG_NAME(Rb_tree)#endiftemplate <class _Key, class _Compare,          class _Value, class _KeyOfValue, class _Traits,          _STLP_DEFAULT_ALLOCATOR_SELECT(_Value) >class _Rb_tree : public _Rb_tree_base<_Value, _Alloc> {  typedef _Rb_tree_base<_Value, _Alloc> _Base;  typedef _Rb_tree<_Key, _Compare, _Value, _KeyOfValue, _Traits, _Alloc> _Self;protected:  typedef _Rb_tree_node_base * _Base_ptr;  typedef _Rb_tree_node<_Value> _Node;  typedef _Node* _Link_type;  typedef _Rb_tree_Color_type _Color_type;public:  typedef _Key key_type;  typedef _Value value_type;  typedef typename _Traits::pointer pointer;  typedef const value_type* const_pointer;  typedef typename _Traits::reference reference;  typedef const value_type& const_reference;  typedef size_t size_type;  typedef ptrdiff_t difference_type;  typedef bidirectional_iterator_tag _Iterator_category;  typedef typename _Base::allocator_type allocator_type;protected:  _STLP_KEY_TYPE_FOR_CONT_EXT(key_type)  _Base_ptr _M_create_node(const value_type& __x) {    _Link_type __tmp = this->_M_header.allocate(1);    _STLP_TRY {      _Copy_Construct(&__tmp->_M_value_field, __x);    }    _STLP_UNWIND(this->_M_header.deallocate(__tmp,1))    _S_left(__tmp) = 0;    _S_right(__tmp) = 0;    return __tmp;  }  _Base_ptr _M_clone_node(_Base_ptr __x) {    _Base_ptr __tmp = _M_create_node(_S_value(__x));    _S_color(__tmp) = _S_color(__x);    return __tmp;  }  size_type _M_node_count; // keeps track of size of tree  _Compare _M_key_compare;  _Base_ptr _M_root() const  { return this->_M_header._M_data._M_parent; }  _Base_ptr _M_leftmost() const  { return this->_M_header._M_data._M_left; }  _Base_ptr _M_rightmost() const  { return this->_M_header._M_data._M_right; }  _Base_ptr& _M_root()  { return this->_M_header._M_data._M_parent; }  _Base_ptr& _M_leftmost()

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -