A priority queue composed of one specific heap policy. More...
#include <priority_queue.hpp>
Public Types | |
typedef _Alloc | allocator_type |
typedef Cmp_Fn | cmp_fn |
typedef base_type::const_iterator | const_iterator |
typedef __rebind_va::const_pointer | const_pointer |
typedef __rebind_va::const_reference | const_reference |
typedef Tag | container_category |
typedef allocator_type::difference_type | difference_type |
typedef base_type::iterator | iterator |
typedef base_type::point_const_iterator | point_const_iterator |
typedef base_type::point_iterator | point_iterator |
typedef __rebind_va::pointer | pointer |
typedef __rebind_va::reference | reference |
typedef allocator_type::size_type | size_type |
typedef _Tv | value_type |
Public Member Functions | |
priority_queue () | |
priority_queue (const cmp_fn &r_cmp_fn) | |
Constructor taking some policy objects. More... | |
template<typename It > | |
priority_queue (It first_it, It last_it) | |
Constructor taking __iterators to a range of value_types. More... | |
template<typename It > | |
priority_queue (It first_it, It last_it, const cmp_fn &r_cmp_fn) | |
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. More... | |
priority_queue (const priority_queue &other) | |
virtual | ~priority_queue () |
priority_queue & | operator= (const priority_queue &other) |
void | swap (priority_queue &other) |
Private Types | |
typedef _Alloc::template rebind< _Tv > | __rebind_v |
typedef __rebind_v::other | __rebind_va |
typedef detail::container_base_dispatch< _Tv, Cmp_Fn, _Alloc, Tag >::type | base_type |
A priority queue composed of one specific heap policy.
_Tv | Value type. |
Cmp_Fn | Comparison functor. |
Tag | Instantiating data structure type, see container_tag. |
_Alloc | Allocator type. |
Base is dispatched at compile time via Tag, from the following choices: binary_heap_tag, binomial_heap_tag, pairing_heap_tag, rc_binomial_heap_tag, thin_heap_tag
Base choices are: detail::binary_heap, detail::binomial_heap, detail::pairing_heap, detail::rc_binomial_heap, detail::thin_heap.