Provided by: libstdc++-9-doc_9.5.0-3ubuntu1_all bug

NAME

       __gnu_pbds::detail::rb_tree_map< Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc > - Red-
       Black tree.

SYNOPSIS

       #include <rb_tree_.hpp>

       Inherits __gnu_pbds::detail::bin_search_tree_map< Key, Mapped, Cmp_Fn, Node_And_It_Traits,
       _Alloc >.

   Public Types
       typedef _Alloc allocator_type
       typedef Cmp_Fn cmp_fn
       typedef std::pair< size_type, size_type > comp_hash
       typedef base_type::const_iterator const_iterator
       typedef base_type::const_pointer const_pointer
       typedef base_type::const_reference const_reference
       typedef base_type::const_reverse_iterator const_reverse_iterator
       typedef rb_tree_tag container_category
       typedef _Alloc::difference_type difference_type
       typedef base_type::iterator iterator
       typedef base_type::key_const_pointer key_const_pointer
       typedef base_type::key_const_reference key_const_reference
       typedef base_type::key_pointer key_pointer
       typedef base_type::key_reference key_reference
       typedef base_type::key_type key_type
       typedef base_type::mapped_const_pointer mapped_const_pointer
       typedef base_type::mapped_const_reference mapped_const_reference
       typedef base_type::mapped_pointer mapped_pointer
       typedef base_type::mapped_reference mapped_reference
       typedef base_type::mapped_type mapped_type
       typedef __nothrowcopy::indicator no_throw_indicator
       typedef traits_type::node_const_iterator node_const_iterator
       typedef traits_type::node_iterator node_iterator
       typedef base_type::node_update node_update
       typedef base_type::const_iterator point_const_iterator
       typedef base_type::point_iterator point_iterator
       typedef base_type::pointer pointer
       typedef base_type::reference reference
       typedef base_type::reverse_iterator reverse_iterator
       typedef _Alloc::size_type size_type
       typedef integral_constant< int, Store_Hash > store_extra
       typedef base_type::value_type value_type

   Public Member Functions
       rb_tree_map (const Cmp_Fn &)
       rb_tree_map (const Cmp_Fn &, const node_update &)
       rb_tree_map (const direct_mask_range_hashing< Size_Type > &)
       iterator begin ()
       const_iterator begin () const
       void clear ()
       template<typename It > void copy_from_range (It, It)
       bool empty () const
       iterator end ()
       const_iterator end () const
       iterator erase (iterator)
       bool erase (key_const_reference)
       reverse_iterator erase (reverse_iterator)
       template<typename Pred > size_type erase_if (Pred)
       point_iterator find (key_const_reference)
       point_const_iterator find (key_const_reference) const
       Cmp_Fn & get_cmp_fn ()
       const Cmp_Fn & get_cmp_fn () const
       std::pair< point_iterator, bool > insert (const_reference)
       void join (direct_mask_range_hashing< Size_Type > &)
       point_iterator lower_bound (key_const_reference)
       point_const_iterator lower_bound (key_const_reference) const
       size_type max_size () const
       node_iterator node_begin ()
           Returns a node_iterator corresponding to the node at the root of the tree.
       node_const_iterator node_begin () const
           Returns a const node_iterator corresponding to the node at the root of the tree.
       node_iterator node_end ()
           Returns a node_iterator corresponding to a node just after a leaf of the tree.
       node_const_iterator node_end () const
           Returns a const node_iterator corresponding to a node just after a leaf of the tree.
       mapped_reference operator[] (key_const_reference r_key)
       reverse_iterator rbegin ()
       const_reverse_iterator rbegin () const
       reverse_iterator rend ()
       const_reverse_iterator rend () const
       size_type size () const
       void split (key_const_reference, direct_mask_range_hashing< Size_Type > &)
       void swap (direct_mask_range_hashing< Size_Type > &)
       void swap (tree_order_statistics_node_update< Node_CItr, Node_Itr, Cmp_Fn, _Alloc > &)
       point_iterator upper_bound (key_const_reference)
       point_const_iterator upper_bound (key_const_reference) const

   Public Attributes
       no_throw_indicator m_no_throw_copies_indicator
       store_extra m_store_extra_indicator

   Protected Types
       typedef node_allocator::value_type node
       typedef _Alloc::template rebind< typenametraits_type::node >::other node_allocator
       typedef traits_type::null_node_update_pointer null_node_update_pointer
       typedef types_traits< Key, Mapped, _Alloc, false > traits_base

   Protected Member Functions
       void actual_erase_node (node_pointer)
       template<typename Node_Update_ > void apply_update (node_pointer, Node_Update_ *)
       void apply_update (node_pointer, null_node_update_pointer)
       std::pair< node_pointer, bool > erase (node_pointer)
       node_pointer get_new_node_for_leaf_insert (const_reference, false_type)
       node_pointer get_new_node_for_leaf_insert (const_reference, true_type)
       void initialize_min_max ()
       iterator insert_imp_empty (const_reference)
       std::pair< point_iterator, bool > insert_leaf (const_reference)
       iterator insert_leaf_new (const_reference, node_pointer, bool)
       void join_finish (tree_order_statistics_node_update< Node_CItr, Node_Itr, Cmp_Fn, _Alloc >
           &)
       bool join_prep (tree_order_statistics_node_update< Node_CItr, Node_Itr, Cmp_Fn, _Alloc >
           &)
       size_type recursive_count (node_pointer) const
       void rotate_left (node_pointer)
       void rotate_parent (node_pointer)
       void rotate_right (node_pointer)
       void split_finish (tree_order_statistics_node_update< Node_CItr, Node_Itr, Cmp_Fn, _Alloc
           > &)
       bool split_prep (key_const_reference, tree_order_statistics_node_update< Node_CItr,
           Node_Itr, Cmp_Fn, _Alloc > &)
       void update_min_max_for_erased_node (node_pointer)
       template<typename Node_Update_ > void update_to_top (node_pointer, Node_Update_ *)
       void update_to_top (node_pointer, null_node_update_pointer)
       void value_swap (tree_order_statistics_node_update< Node_CItr, Node_Itr, Cmp_Fn, _Alloc >
           &)

   Static Protected Member Functions
       static void clear_imp (node_pointer)

   Protected Attributes
       node_pointer m_p_head
       size_type m_size

   Static Protected Attributes
       static node_allocator s_node_allocator

Detailed Description

   template<typename Key, typename Mapped, typename Cmp_Fn, typename Node_And_It_Traits, typename
       _Alloc>
       class __gnu_pbds::detail::rb_tree_map< Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc
       >"Red-Black tree.

       This implementation uses an idea from the SGI STL (using a header node which is needed for
       efficient iteration).

       Definition at line 84 of file rb_tree_.hpp.

Member Typedef Documentation

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef _Alloc __gnu_pbds::detail::rb_tree_map< Key, Mapped, Cmp_Fn,
       Node_And_It_Traits, _Alloc >::allocator_type
       Definition at line 93 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef Cmp_Fn __gnu_pbds::detail::rb_tree_map< Key, Mapped, Cmp_Fn,
       Node_And_It_Traits, _Alloc >::cmp_fn
       Definition at line 92 of file rb_tree_.hpp.

   typedef std::pair<size_type, size_type> __gnu_pbds::detail::types_traits< Key, Mapped, _Alloc,
       Store_Hash >::comp_hash [inherited]
       Definition at line 277 of file types_traits.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::const_iterator __gnu_pbds::detail::rb_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::const_iterator
       Definition at line 114 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::const_pointer __gnu_pbds::detail::rb_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::const_pointer
       Definition at line 108 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::const_reference __gnu_pbds::detail::rb_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::const_reference
       Definition at line 110 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::const_reverse_iterator
       __gnu_pbds::detail::rb_tree_map< Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc
       >::const_reverse_iterator
       Definition at line 116 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef rb_tree_tag __gnu_pbds::detail::rb_tree_map< Key, Mapped,
       Cmp_Fn, Node_And_It_Traits, _Alloc >::container_category
       Definition at line 91 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef _Alloc::difference_type __gnu_pbds::detail::rb_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::difference_type
       Definition at line 95 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::iterator __gnu_pbds::detail::rb_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::iterator
       Definition at line 113 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::key_const_pointer __gnu_pbds::detail::rb_tree_map<
       Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::key_const_pointer
       Definition at line 98 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::key_const_reference __gnu_pbds::detail::rb_tree_map<
       Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::key_const_reference
       Definition at line 100 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::key_pointer __gnu_pbds::detail::rb_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::key_pointer
       Definition at line 97 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::key_reference __gnu_pbds::detail::rb_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::key_reference
       Definition at line 99 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::key_type __gnu_pbds::detail::rb_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::key_type
       Definition at line 96 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::mapped_const_pointer __gnu_pbds::detail::rb_tree_map<
       Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::mapped_const_pointer
       Definition at line 103 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::mapped_const_reference
       __gnu_pbds::detail::rb_tree_map< Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc
       >::mapped_const_reference
       Definition at line 105 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::mapped_pointer __gnu_pbds::detail::rb_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::mapped_pointer
       Definition at line 102 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::mapped_reference __gnu_pbds::detail::rb_tree_map<
       Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::mapped_reference
       Definition at line 104 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::mapped_type __gnu_pbds::detail::rb_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::mapped_type
       Definition at line 101 of file rb_tree_.hpp.

   typedef __nothrowcopy::indicator __gnu_pbds::detail::types_traits< Key, Mapped, _Alloc,
       Store_Hash >::no_throw_indicator [inherited]
       Definition at line 279 of file types_traits.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef node_allocator::value_type
       __gnu_pbds::detail::bin_search_tree_map< Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc
       >::node [protected],  [inherited]
       Definition at line 119 of file bin_search_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef _Alloc::template rebind<typenametraits_type::node>::other
       __gnu_pbds::detail::bin_search_tree_map< Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc
       >::node_allocator [protected],  [inherited]
       Definition at line 117 of file bin_search_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef traits_type::node_const_iterator
       __gnu_pbds::detail::bin_search_tree_map< Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc
       >::node_const_iterator [inherited]
       Definition at line 163 of file bin_search_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef traits_type::node_iterator
       __gnu_pbds::detail::bin_search_tree_map< Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc
       >::node_iterator [inherited]
       Definition at line 164 of file bin_search_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::node_update __gnu_pbds::detail::rb_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::node_update
       Definition at line 117 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef traits_type::null_node_update_pointer
       __gnu_pbds::detail::bin_search_tree_map< Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc
       >::null_node_update_pointer [protected],  [inherited]
       Definition at line 123 of file bin_search_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::const_iterator __gnu_pbds::detail::rb_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::point_const_iterator
       Definition at line 112 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::point_iterator __gnu_pbds::detail::rb_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::point_iterator
       Definition at line 111 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::pointer __gnu_pbds::detail::rb_tree_map< Key, Mapped,
       Cmp_Fn, Node_And_It_Traits, _Alloc >::pointer
       Definition at line 107 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::reference __gnu_pbds::detail::rb_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::reference
       Definition at line 109 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::reverse_iterator __gnu_pbds::detail::rb_tree_map<
       Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::reverse_iterator
       Definition at line 115 of file rb_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef _Alloc::size_type __gnu_pbds::detail::rb_tree_map< Key, Mapped,
       Cmp_Fn, Node_And_It_Traits, _Alloc >::size_type
       Definition at line 94 of file rb_tree_.hpp.

   typedef integral_constant<int, Store_Hash> __gnu_pbds::detail::types_traits< Key, Mapped,
       _Alloc, Store_Hash >::store_extra [inherited]
       Definition at line 278 of file types_traits.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef types_traits<Key, Mapped, _Alloc, false>
       __gnu_pbds::detail::bin_search_tree_map< Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc
       >::traits_base [protected],  [inherited]
       Definition at line 113 of file bin_search_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > typedef base_type::value_type __gnu_pbds::detail::rb_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::value_type
       Definition at line 106 of file rb_tree_.hpp.

Member Function Documentation

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > node_iterator __gnu_pbds::detail::bin_search_tree_map< Key, Mapped,
       Cmp_Fn, Node_And_It_Traits, _Alloc >::node_begin () [inline],  [inherited]
       Returns a node_iterator corresponding to the node at the root of the tree.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > node_const_iterator __gnu_pbds::detail::bin_search_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::node_begin () const [inline],  [inherited]
       Returns a const node_iterator corresponding to the node at the root of the tree.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > node_iterator __gnu_pbds::detail::bin_search_tree_map< Key, Mapped,
       Cmp_Fn, Node_And_It_Traits, _Alloc >::node_end () [inline],  [inherited]
       Returns a node_iterator corresponding to a node just after a leaf of the tree.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > node_const_iterator __gnu_pbds::detail::bin_search_tree_map< Key,
       Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc >::node_end () const [inline],  [inherited]
       Returns a const node_iterator corresponding to a node just after a leaf of the tree.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > mapped_reference __gnu_pbds::detail::rb_tree_map< Key, Mapped, Cmp_Fn,
       Node_And_It_Traits, _Alloc >::operator[] (key_const_reference r_key) [inline]
       Definition at line 138 of file rb_tree_.hpp.

Member Data Documentation

   no_throw_indicator __gnu_pbds::detail::types_traits< Key, Mapped, _Alloc, Store_Hash
       >::m_no_throw_copies_indicator [inherited]
       Definition at line 282 of file types_traits.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > node_pointer __gnu_pbds::detail::bin_search_tree_map< Key, Mapped,
       Cmp_Fn, Node_And_It_Traits, _Alloc >::m_p_head [protected],  [inherited]
       Definition at line 394 of file bin_search_tree_.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > size_type __gnu_pbds::detail::bin_search_tree_map< Key, Mapped, Cmp_Fn,
       Node_And_It_Traits, _Alloc >::m_size [protected],  [inherited]
       Definition at line 395 of file bin_search_tree_.hpp.

   store_extra __gnu_pbds::detail::types_traits< Key, Mapped, _Alloc, Store_Hash
       >::m_store_extra_indicator [inherited]
       Definition at line 281 of file types_traits.hpp.

   template<typename Key , typename Mapped , typename Cmp_Fn , typename Node_And_It_Traits ,
       typename _Alloc > node_allocator __gnu_pbds::detail::bin_search_tree_map< Key, Mapped,
       Cmp_Fn, Node_And_It_Traits, _Alloc >::s_node_allocator [static],  [protected],
       [inherited]
       Definition at line 396 of file bin_search_tree_.hpp.

Author

       Generated automatically by Doxygen for libstdc++ from the source code.

libstdc++__gnu_pbds::detail::rb_tree_map<TKey,eMapped,2Cmp_Fn, Node_And_It_Traits, _Alloc >(3cxx)