libstdc++
thin_heap_/erase_fn_imps.hpp
Go to the documentation of this file.
1// -*- C++ -*-
2
3// Copyright (C) 2005-2021 Free Software Foundation, Inc.
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the terms
7// of the GNU General Public License as published by the Free Software
8// Foundation; either version 3, or (at your option) any later
9// version.
10
11// This library is distributed in the hope that it will be useful, but
12// WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14// General Public License for more details.
15
16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
19
20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
24
25// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
26
27// Permission to use, copy, modify, sell, and distribute this software
28// is hereby granted without fee, provided that the above copyright
29// notice appears in all copies, and that both that copyright notice
30// and this permission notice appear in supporting documentation. None
31// of the above authors, nor IBM Haifa Research Laboratories, make any
32// representation about the suitability of this software for any
33// purpose. It is provided "as is" without express or implied
34// warranty.
35
36/**
37 * @file thin_heap_/erase_fn_imps.hpp
38 * Contains an implementation for thin_heap_.
39 */
40
41#ifdef PB_DS_CLASS_C_DEC
42
43PB_DS_CLASS_T_DEC
44void
45PB_DS_CLASS_C_DEC::
46pop()
47{
48 PB_DS_ASSERT_VALID((*this))
49 _GLIBCXX_DEBUG_ASSERT(!base_type::empty());
50 _GLIBCXX_DEBUG_ASSERT(m_p_max != 0);
51
52 node_pointer p_nd = m_p_max;
53 remove_max_node();
54 base_type::actual_erase_node(p_nd);
55 PB_DS_ASSERT_VALID((*this))
56}
57
58PB_DS_CLASS_T_DEC
59inline void
60PB_DS_CLASS_C_DEC::
61remove_max_node()
62{
63 to_aux_except_max();
64 make_from_aux();
65}
66
67PB_DS_CLASS_T_DEC
68void
69PB_DS_CLASS_C_DEC::
70to_aux_except_max()
71{
72 node_pointer p_add = base_type::m_p_root;
73 while (p_add != m_p_max)
74 {
75 node_pointer p_next_add = p_add->m_p_next_sibling;
76 add_to_aux(p_add);
77 p_add = p_next_add;
78 }
79
80 p_add = m_p_max->m_p_l_child;
81 while (p_add != 0)
82 {
83 node_pointer p_next_add = p_add->m_p_next_sibling;
84 p_add->m_metadata = p_add->m_p_l_child == 0 ?
85 0 : p_add->m_p_l_child->m_metadata + 1;
86
87 add_to_aux(p_add);
88 p_add = p_next_add;
89 }
90
91 p_add = m_p_max->m_p_next_sibling;
92 while (p_add != 0)
93 {
94 node_pointer p_next_add = p_add->m_p_next_sibling;
95 add_to_aux(p_add);
96 p_add = p_next_add;
97 }
98}
99
100PB_DS_CLASS_T_DEC
101inline void
102PB_DS_CLASS_C_DEC::
103add_to_aux(node_pointer p_nd)
104{
105 size_type r = p_nd->m_metadata;
106 while (m_a_aux[r] != 0)
107 {
108 _GLIBCXX_DEBUG_ASSERT(p_nd->m_metadata < rank_bound());
109 if (Cmp_Fn::operator()(m_a_aux[r]->m_value, p_nd->m_value))
110 make_child_of(m_a_aux[r], p_nd);
111 else
112 {
113 make_child_of(p_nd, m_a_aux[r]);
114 p_nd = m_a_aux[r];
115 }
116
117 m_a_aux[r] = 0;
118 ++r;
119 }
120
121 _GLIBCXX_DEBUG_ASSERT(p_nd->m_metadata < rank_bound());
122
123 m_a_aux[r] = p_nd;
124}
125
126PB_DS_CLASS_T_DEC
127inline void
128PB_DS_CLASS_C_DEC::
129make_child_of(node_pointer p_nd, node_pointer p_new_parent)
130{
131 _GLIBCXX_DEBUG_ASSERT(p_nd->m_metadata == p_new_parent->m_metadata);
132 _GLIBCXX_DEBUG_ASSERT(m_a_aux[p_nd->m_metadata] == p_nd ||
133 m_a_aux[p_nd->m_metadata] == p_new_parent);
134
135 ++p_new_parent->m_metadata;
136 base_type::make_child_of(p_nd, p_new_parent);
137}
138
139PB_DS_CLASS_T_DEC
140inline void
141PB_DS_CLASS_C_DEC::
142make_from_aux()
143{
144 base_type::m_p_root = m_p_max = 0;
145 const size_type rnk_bnd = rank_bound();
146 size_type i = 0;
147 while (i < rnk_bnd)
148 {
149 if (m_a_aux[i] != 0)
150 {
151 make_root_and_link(m_a_aux[i]);
152 m_a_aux[i] = 0;
153 }
154 ++i;
155 }
156
157 PB_DS_ASSERT_AUX_NULL((*this))
158}
159
160PB_DS_CLASS_T_DEC
161inline void
162PB_DS_CLASS_C_DEC::
163remove_node(node_pointer p_nd)
164{
165 node_pointer p_parent = p_nd;
166 while (base_type::parent(p_parent) != 0)
167 p_parent = base_type::parent(p_parent);
168
169 base_type::bubble_to_top(p_nd);
170 m_p_max = p_nd;
171
172 node_pointer p_fix = base_type::m_p_root;
173 while (p_fix != 0&& p_fix->m_p_next_sibling != p_parent)
174 p_fix = p_fix->m_p_next_sibling;
175
176 if (p_fix != 0)
177 p_fix->m_p_next_sibling = p_nd;
178
179 remove_max_node();
180}
181
182PB_DS_CLASS_T_DEC
183inline void
184PB_DS_CLASS_C_DEC::
185clear()
186{
187 base_type::clear();
188 m_p_max = 0;
189}
190
191PB_DS_CLASS_T_DEC
192void
193PB_DS_CLASS_C_DEC::
194erase(point_iterator it)
195{
196 PB_DS_ASSERT_VALID((*this))
197 _GLIBCXX_DEBUG_ASSERT(!base_type::empty());
198
199 node_pointer p_nd = it.m_p_nd;
200 remove_node(p_nd);
201 base_type::actual_erase_node(p_nd);
202 PB_DS_ASSERT_VALID((*this))
203}
204
205PB_DS_CLASS_T_DEC
206template<typename Pred>
207typename PB_DS_CLASS_C_DEC::size_type
208PB_DS_CLASS_C_DEC::
209erase_if(Pred pred)
210{
211 PB_DS_ASSERT_VALID((*this))
212 if (base_type::empty())
213 {
214 PB_DS_ASSERT_VALID((*this))
215 return 0;
216 }
217
218 base_type::to_linked_list();
219 node_pointer p_out = base_type::prune(pred);
220 size_type ersd = 0;
221 while (p_out != 0)
222 {
223 ++ersd;
224 node_pointer p_next = p_out->m_p_next_sibling;
225 base_type::actual_erase_node(p_out);
226 p_out = p_next;
227 }
228
229 node_pointer p_cur = base_type::m_p_root;
230 m_p_max = base_type::m_p_root = 0;
231 while (p_cur != 0)
232 {
233 node_pointer p_next = p_cur->m_p_next_sibling;
234 make_root_and_link(p_cur);
235 p_cur = p_next;
236 }
237
238 PB_DS_ASSERT_VALID((*this))
239 return ersd;
240}
241
242PB_DS_CLASS_T_DEC
243inline typename PB_DS_CLASS_C_DEC::size_type
244PB_DS_CLASS_C_DEC::
245rank_bound()
246{
247 using namespace std;
248 const size_t* const p_upper =
249 std::upper_bound(g_a_rank_bounds,
250 g_a_rank_bounds + num_distinct_rank_bounds,
251 base_type::m_size);
252
253 if (p_upper == g_a_rank_bounds + num_distinct_rank_bounds)
254 return max_rank;
255
256 return (p_upper - g_a_rank_bounds);
257}
258#endif
ISO C++ entities toplevel namespace is std.