85 :
public PB_DS_ENTRY_CMP_DEC,
public PB_DS_RESIZE_POLICY_DEC
88 typedef Value_Type value_type;
89 typedef Cmp_Fn cmp_fn;
90 typedef _Alloc allocator_type;
91 typedef typename _Alloc::size_type size_type;
92 typedef typename _Alloc::difference_type difference_type;
93 typedef typename PB_DS_ENTRY_CMP_DEC entry_cmp;
94 typedef PB_DS_RESIZE_POLICY_DEC resize_policy;
100 simple_value = is_simple<value_type>::value
103 typedef integral_constant<int, simple_value> no_throw_copies_t;
106 typedef typename __rebind_v::allocator_type value_allocator;
109 typedef typename __rebind_v::pointer pointer;
110 typedef typename __rebind_v::const_pointer const_pointer;
111 typedef typename __rebind_v::reference reference;
112 typedef typename __rebind_v::const_reference const_reference;
114 typedef typename __conditional_type<simple_value,
115 value_type, pointer>::__type
124 simple_value, _Alloc>
125 point_const_iterator;
127 typedef point_const_iterator point_iterator;
130 simple_value, _Alloc>
133 typedef const_iterator iterator;
138 binary_heap(
const cmp_fn&);
140 binary_heap(
const binary_heap&);
147 _GLIBCXX_NODISCARD
inline bool
162 inline point_iterator
163 push(const_reference);
166 modify(point_iterator, const_reference);
168 inline const_reference
175 erase(point_iterator);
177 template<
typename Pred>
182 erase_at(entry_pointer, size_type, false_type);
185 erase_at(entry_pointer, size_type, true_type);
190 inline const_iterator
196 inline const_iterator
202 template<
typename Pred>
204 split(Pred, binary_heap&);
209#ifdef PB_DS_BINARY_HEAP_TRACE_
215 template<
typename It>
217 copy_from_range(It, It);
221 value_swap(binary_heap&);
224 insert_value(const_reference, false_type);
227 insert_value(value_type, true_type);
230 resize_for_insert_if_needed();
233 swap_value_imp(entry_pointer, value_type, true_type);
236 swap_value_imp(entry_pointer, const_reference, false_type);
241 inline const_reference
242 top_imp(true_type)
const;
244 inline const_reference
245 top_imp(false_type)
const;
247 inline static size_type
248 left_child(size_type);
250 inline static size_type
251 right_child(size_type);
253 inline static size_type
257 resize_for_erase_if_needed();
259 template<
typename Pred>
266 const entry_cmp& m_cmp =
static_cast<entry_cmp&
>(*this);
267 entry_pointer end = m_a_entries + m_size;
268 std::make_heap(m_a_entries, end, m_cmp);
274 const entry_cmp& m_cmp =
static_cast<entry_cmp&
>(*this);
275 entry_pointer end = m_a_entries + m_size;
276 std::push_heap(m_a_entries, end, m_cmp);
282 const entry_cmp& m_cmp =
static_cast<entry_cmp&
>(*this);
283 entry_pointer end = m_a_entries + m_size;
284 std::pop_heap(m_a_entries, end, m_cmp);
289 assert_valid(
const char*,
int)
const;
292#ifdef PB_DS_BINARY_HEAP_TRACE_
294 trace_entry(
const entry&, false_type)
const;
297 trace_entry(
const entry&, true_type)
const;
300 static entry_allocator s_entry_allocator;
301 static value_allocator s_value_allocator;
302 static no_throw_copies_t s_no_throw_copies_ind;
305 size_type m_actual_size;
306 entry_pointer m_a_entries;