Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

__gnu_pbds(3cxx) [debian man page]

__gnu_pbds(3cxx)														  __gnu_pbds(3cxx)

NAME
__gnu_pbds - SYNOPSIS
Classes struct associative_container_tag Basic associative-container. class basic_hash_table An abstract basic hash-based associative container. struct basic_hash_tag Basic hash. class basic_tree An abstract basic tree-like (tree, trie) associative container. struct basic_tree_tag Basic tree. struct binary_heap_tag Binary-heap (array-based). struct binomial_heap_tag Binomial-heap. class cc_hash_table A concrete collision-chaining hash-based associative container. struct cc_hash_tag Collision-chaining hash. class container_base An abstract basic associative container. struct container_tag Base data structure tag. struct container_traits container_traits class gp_hash_table A concrete general-probing hash-based associative container. struct gp_hash_tag General-probing hash. class list_update A list-update based associative container. struct list_update_tag List-update. struct null_mapped_type A mapped-policy indicating that an associative container is a set. struct ov_tree_tag Ordered-vector tree. struct pairing_heap_tag Pairing-heap. struct pat_trie_tag PATRICIA trie. struct priority_queue_tag Basic priority-queue. struct rb_tree_tag Red-black tree. struct rc_binomial_heap_tag Redundant-counter binomial-heap. struct sequence_tag Basic sequence. struct splay_tree_tag Splay tree. struct string_tag Basic string container, inclusive of strings, ropes, etc. struct thin_heap_tag Thin heap. class tree A concrete basic tree-based associative container. struct tree_tag tree. class trie A concrete basic trie-based associative container. struct trie_tag trie. Typedefs typedef void trivial_iterator_difference_type Functions void __throw_container_error (void) void __throw_insert_error (void) void __throw_join_error (void) void __throw_resize_error (void) Detailed Description GNU extensions for policy-based data structures for public use. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Nov 27 2012 __gnu_pbds(3cxx)

Check Out this Related Man Page

__gnu_pbds::tree< Key, Mapped, Cmp_Fn, Tag, Node_Update, _AllLibrary Functions__gnu_pbds::tree< Key, Mapped, Cmp_Fn, Tag, Node_Update, _Alloc >(3)

NAME
__gnu_pbds::tree< Key, Mapped, Cmp_Fn, Tag, Node_Update, _Alloc > - SYNOPSIS
Inherits __gnu_pbds::basic_branch< Key, Mapped, Tag, detail::tree_traits< Key, Mapped, Cmp_Fn, Node_Update, Tag, _Alloc >::node_update, __gnu_cxx::typelist::create2< Cmp_Fn, detail::tree_traits< Key, Mapped, Cmp_Fn, Node_Update, Tag, _Alloc > >::type, _Alloc >. Public Types typedef Cmp_Fn cmp_fn typedef detail::tree_traits < Key, Mapped, Cmp_Fn, Node_Update, Tag, _Alloc > ::node_update node_update" Public Member Functions tree (const cmp_fn &c) template<typename It > tree (It first, It last) template<typename It > tree (It first, It last, const cmp_fn &c) tree (const tree &other) tree & operator= (const tree &other) void swap (tree &other) Detailed Description template<typename Key, typename Mapped, typename Cmp_Fn = std::less<Key>, typename Tag = rb_tree_tag, template< typename Node_CItr, typename Node_Itr, typename Cmp_Fn_, typename _Alloc_ > class Node_Update = null_node_update, typename _Alloc = std::allocator<char>>class __gnu_pbds::tree< Key, Mapped, Cmp_Fn, Tag, Node_Update, _Alloc > A tree-based container. Template Parameters: Key Key type. Mapped Map type. Cmp_Fn Comparison functor. Tag Instantiating data structure type, see container_tag. Node_Update Updates tree internal-nodes, restores invariants when invalidated. XXX See design::tree-based-containersnode invariants. _Alloc Allocator type. Base tag choices are: ov_tree_tag, rb_tree_tag, splay_tree_tag. Base is basic_branch. Definition at line 635 of file assoc_container.hpp. Member Typedef Documentation template<typename Key , typename Mapped , typename Cmp_Fn = std::less<Key>, typename Tag = rb_tree_tag, template< typename Node_CItr, typename Node_Itr, typename Cmp_Fn_, typename _Alloc_ > class Node_Update = null_node_update, typename _Alloc = std::allocator<char>> typedef Cmp_Fn __gnu_pbds::tree< Key, Mapped, Cmp_Fn, Tag, Node_Update, _Alloc >::cmp_fn Comparison functor type. Definition at line 642 of file assoc_container.hpp. Constructor &; Destructor Documentation template<typename Key , typename Mapped , typename Cmp_Fn = std::less<Key>, typename Tag = rb_tree_tag, template< typename Node_CItr, typename Node_Itr, typename Cmp_Fn_, typename _Alloc_ > class Node_Update = null_node_update, typename _Alloc = std::allocator<char>> __gnu_pbds::tree< Key, Mapped, Cmp_Fn, Tag, Node_Update, _Alloc >::tree (const cmp_fn &c) [inline] Constructor taking some policy objects. r_cmp_fn will be copied by the Cmp_Fn object of the container object. Definition at line 648 of file assoc_container.hpp. template<typename Key , typename Mapped , typename Cmp_Fn = std::less<Key>, typename Tag = rb_tree_tag, template< typename Node_CItr, typename Node_Itr, typename Cmp_Fn_, typename _Alloc_ > class Node_Update = null_node_update, typename _Alloc = std::allocator<char>> template<typename It > __gnu_pbds::tree< Key, Mapped, Cmp_Fn, Tag, Node_Update, _Alloc >::tree (Itfirst, Itlast) [inline] Constructor taking __iterators to a range of value_types. The value_types between first_it and last_it will be inserted into the container object. Definition at line 655 of file assoc_container.hpp. template<typename Key , typename Mapped , typename Cmp_Fn = std::less<Key>, typename Tag = rb_tree_tag, template< typename Node_CItr, typename Node_Itr, typename Cmp_Fn_, typename _Alloc_ > class Node_Update = null_node_update, typename _Alloc = std::allocator<char>> template<typename It > __gnu_pbds::tree< Key, Mapped, Cmp_Fn, Tag, Node_Update, _Alloc >::tree (Itfirst, Itlast, const cmp_fn &c) [inline] Constructor taking __iterators to a range of value_types and some policy objects The value_types between first_it and last_it will be inserted into the container object. r_cmp_fn will be copied by the cmp_fn object of the container object. Definition at line 663 of file assoc_container.hpp. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Jun 10 2__gnu_pbds::tree< Key, Mapped, Cmp_Fn, Tag, Node_Update, _Alloc >(3)
Man Page