]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/include/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp
c++config (std::size_t, [...]): Provide typedefs.
[thirdparty/gcc.git] / libstdc++-v3 / include / ext / pb_ds / detail / thin_heap_ / insert_fn_imps.hpp
CommitLineData
4569a895
AT
1// -*- C++ -*-
2
748086b7 3// Copyright (C) 2005, 2006, 2009 Free Software Foundation, Inc.
4569a895
AT
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
748086b7 8// Foundation; either version 3, or (at your option) any later
4569a895
AT
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
748086b7
JJ
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.
4569a895 19
748086b7
JJ
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/>.
4569a895
AT
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 insert_fn_imps.hpp
38 * Contains an implementation for thin_heap_.
39 */
40
41PB_DS_CLASS_T_DEC
42inline typename PB_DS_CLASS_C_DEC::point_iterator
43PB_DS_CLASS_C_DEC::
44push(const_reference r_val)
45{
47bea7b8 46 _GLIBCXX_DEBUG_ONLY(assert_valid();)
4569a895
AT
47
48 node_pointer p_nd = base_type::get_new_node_for_insert(r_val);
49
50 p_nd->m_metadata = 0;
51
8fc81078 52 p_nd->m_p_prev_or_parent = p_nd->m_p_l_child = 0;
4569a895 53
8fc81078 54 if (base_type::m_p_root == 0)
4569a895 55 {
8fc81078 56 p_nd->m_p_next_sibling = 0;
4569a895
AT
57
58 m_p_max = base_type::m_p_root = p_nd;
59
47bea7b8 60 _GLIBCXX_DEBUG_ONLY(assert_valid();)
4569a895
AT
61
62 return point_iterator(p_nd);
63 }
64
65 p_nd->m_p_next_sibling = base_type::m_p_root;
66
8fc81078 67 base_type::m_p_root->m_p_prev_or_parent = 0;
4569a895
AT
68
69 base_type::m_p_root = p_nd;
70
71 update_max(p_nd);
72
47bea7b8 73 _GLIBCXX_DEBUG_ONLY(assert_valid();)
4569a895
AT
74
75 return point_iterator(p_nd);
76}
77
78PB_DS_CLASS_T_DEC
79inline void
80PB_DS_CLASS_C_DEC::
81make_root(node_pointer p_nd)
82{
83 p_nd->m_metadata =
8fc81078 84 p_nd->m_p_l_child == 0?
4569a895
AT
85 0 :
86 1 + p_nd->m_p_l_child->m_metadata;
87}
88
89PB_DS_CLASS_T_DEC
90inline void
91PB_DS_CLASS_C_DEC::
92make_root_and_link(node_pointer p_nd)
93{
94 make_root(p_nd);
95
8fc81078 96 p_nd->m_p_prev_or_parent = 0;
4569a895
AT
97
98 p_nd->m_p_next_sibling = base_type::m_p_root;
99
8fc81078
PC
100 if (base_type::m_p_root != 0)
101 base_type::m_p_root->m_p_prev_or_parent = 0;
4569a895
AT
102
103 base_type::m_p_root = p_nd;
104
105 update_max(p_nd);
106}
107
108PB_DS_CLASS_T_DEC
109inline void
110PB_DS_CLASS_C_DEC::
111fix(node_pointer p_y)
112{
113 while (true)
114 {
8fc81078 115 if (p_y->m_p_prev_or_parent == 0)
4569a895
AT
116 {
117 fix_root(p_y);
118
119 return;
120 }
8fc81078 121 else if (p_y->m_metadata == 1&& p_y->m_p_next_sibling == 0)
4569a895 122 {
8fc81078 123 if (p_y->m_p_l_child != 0)
4569a895
AT
124 {
125 fix_sibling_rank_1_unmarked(p_y);
126
127 return;
128 }
129
130 fix_sibling_rank_1_marked(p_y);
131
132 p_y = p_y->m_p_prev_or_parent;
133 }
134 else if (p_y->m_metadata > p_y->m_p_next_sibling->m_metadata + 1)
135 {
8fc81078 136 _GLIBCXX_DEBUG_ASSERT(p_y->m_p_l_child != 0);
4569a895
AT
137
138 if (p_y->m_metadata != p_y->m_p_l_child->m_metadata + 2)
139 {
140 fix_sibling_general_unmarked(p_y);
141
142 return;
143 }
144
145 fix_sibling_general_marked(p_y);
146
147 p_y = p_y->m_p_prev_or_parent;
148 }
8fc81078
PC
149 else if ((p_y->m_p_l_child == 0&&
150 p_y->m_metadata == 2) ||(p_y->m_p_l_child != 0&&
4569a895
AT
151 p_y->m_metadata == p_y->m_p_l_child->m_metadata + 3))
152 {
153 node_pointer p_z = p_y->m_p_prev_or_parent;
154
155 fix_child(p_y);
156
157 p_y = p_z;
158 }
159 else
160 return;
161 }
162}
163
164PB_DS_CLASS_T_DEC
165inline void
166PB_DS_CLASS_C_DEC::
167fix_root(node_pointer p_y)
168{
8fc81078 169 _GLIBCXX_DEBUG_ASSERT(p_y->m_p_prev_or_parent == 0);
4569a895
AT
170
171 make_root(p_y);
172
47bea7b8 173 _GLIBCXX_DEBUG_ONLY(assert_node_consistent(p_y, true);)
4569a895
AT
174 }
175
176PB_DS_CLASS_T_DEC
177inline void
178PB_DS_CLASS_C_DEC::
179fix_sibling_rank_1_unmarked(node_pointer p_y)
180{
8fc81078 181 _GLIBCXX_DEBUG_ASSERT(p_y->m_p_prev_or_parent != 0);
4569a895 182
47bea7b8 183 _GLIBCXX_DEBUG_ONLY(node_pointer p_w = p_y->m_p_l_child;)
8fc81078
PC
184 _GLIBCXX_DEBUG_ASSERT(p_w != 0);
185 _GLIBCXX_DEBUG_ASSERT(p_w->m_p_next_sibling == 0);
186 _GLIBCXX_DEBUG_ASSERT(p_y->m_p_next_sibling == 0);
4569a895
AT
187
188 p_y->m_p_next_sibling = p_y->m_p_l_child;
189
190 p_y->m_p_next_sibling->m_p_prev_or_parent = p_y;
191
8fc81078 192 p_y->m_p_l_child = 0;
4569a895 193
47bea7b8 194 _GLIBCXX_DEBUG_ONLY(assert_node_consistent(p_y, false);)
4569a895
AT
195 }
196
197PB_DS_CLASS_T_DEC
198inline void
199PB_DS_CLASS_C_DEC::
200fix_sibling_rank_1_marked(node_pointer p_y)
201{
8fc81078
PC
202 _GLIBCXX_DEBUG_ASSERT(p_y->m_p_prev_or_parent != 0);
203 _GLIBCXX_DEBUG_ASSERT(p_y->m_p_l_child == 0);
4569a895
AT
204
205 p_y->m_metadata = 0;
206
47bea7b8 207 _GLIBCXX_DEBUG_ONLY(assert_node_consistent(p_y, false);)
4569a895
AT
208 }
209
210PB_DS_CLASS_T_DEC
211inline void
212PB_DS_CLASS_C_DEC::
213fix_sibling_general_unmarked(node_pointer p_y)
214{
8fc81078 215 _GLIBCXX_DEBUG_ASSERT(p_y->m_p_prev_or_parent != 0);
4569a895
AT
216
217 node_pointer p_w = p_y->m_p_l_child;
8fc81078
PC
218 _GLIBCXX_DEBUG_ASSERT(p_w != 0);
219 _GLIBCXX_DEBUG_ASSERT(p_w->m_p_next_sibling != 0);
4569a895
AT
220
221 p_y->m_p_l_child = p_w->m_p_next_sibling;
222 p_w->m_p_next_sibling->m_p_prev_or_parent = p_y;
223
224 p_w->m_p_next_sibling = p_y->m_p_next_sibling;
8fc81078 225 _GLIBCXX_DEBUG_ASSERT(p_w->m_p_next_sibling != 0);
4569a895
AT
226 p_w->m_p_next_sibling->m_p_prev_or_parent = p_w;
227
228 p_y->m_p_next_sibling = p_w;
229 p_w->m_p_prev_or_parent = p_y;
230
47bea7b8 231 _GLIBCXX_DEBUG_ONLY(assert_node_consistent(p_y, false);)
4569a895
AT
232 }
233
234PB_DS_CLASS_T_DEC
235inline void
236PB_DS_CLASS_C_DEC::
237fix_sibling_general_marked(node_pointer p_y)
238{
8fc81078 239 _GLIBCXX_DEBUG_ASSERT(p_y->m_p_prev_or_parent != 0);
4569a895
AT
240
241 --p_y->m_metadata;
242
47bea7b8 243 _GLIBCXX_DEBUG_ONLY(assert_node_consistent(p_y, false);)
4569a895
AT
244 }
245
246PB_DS_CLASS_T_DEC
247inline void
248PB_DS_CLASS_C_DEC::
249fix_child(node_pointer p_y)
250{
8fc81078 251 _GLIBCXX_DEBUG_ASSERT(p_y->m_p_prev_or_parent != 0);
4569a895 252
8fc81078 253 if (p_y->m_p_next_sibling != 0)
4569a895
AT
254 p_y->m_p_next_sibling->m_p_prev_or_parent = p_y->m_p_prev_or_parent;
255
256 if (p_y->m_p_prev_or_parent->m_p_l_child == p_y)
257 p_y->m_p_prev_or_parent->m_p_l_child = p_y->m_p_next_sibling;
258 else
259 p_y->m_p_prev_or_parent->m_p_next_sibling = p_y->m_p_next_sibling;
260
261 make_root_and_link(p_y);
262}
263
264PB_DS_CLASS_T_DEC
265void
266PB_DS_CLASS_C_DEC::
267modify(point_iterator it, const_reference r_new_val)
268{
47bea7b8 269 _GLIBCXX_DEBUG_ONLY(assert_valid();)
4569a895
AT
270 node_pointer p_nd = it.m_p_nd;
271
8fc81078 272 _GLIBCXX_DEBUG_ASSERT(p_nd != 0);
4569a895
AT
273
274 const bool smaller = Cmp_Fn::operator()(r_new_val, p_nd->m_value);
275
276 p_nd->m_value = r_new_val;
277
278 if (smaller)
279 {
280 remove_node(p_nd);
281
8fc81078 282 p_nd->m_p_l_child = 0;
4569a895
AT
283
284 make_root_and_link(p_nd);
285
47bea7b8 286 _GLIBCXX_DEBUG_ONLY(assert_valid();)
4569a895
AT
287
288 return;
289 }
290
8fc81078 291 if (p_nd->m_p_prev_or_parent == 0)
4569a895
AT
292 {
293 update_max(p_nd);
294
47bea7b8 295 _GLIBCXX_DEBUG_ONLY(assert_valid();)
4569a895
AT
296
297 return;
298 }
299
300 node_pointer p_y = p_nd->m_p_prev_or_parent;
8fc81078 301 _GLIBCXX_DEBUG_ASSERT(p_y != 0);
4569a895 302
8fc81078 303 if (p_nd->m_p_next_sibling != 0)
4569a895
AT
304 p_nd->m_p_next_sibling->m_p_prev_or_parent = p_y;
305
306 if (p_y->m_p_l_child == p_nd)
307 p_y->m_p_l_child = p_nd->m_p_next_sibling;
308 else
309 p_y->m_p_next_sibling = p_nd->m_p_next_sibling;
310
311 fix(p_y);
312
313 make_root_and_link(p_nd);
314
47bea7b8 315 _GLIBCXX_DEBUG_ONLY(assert_valid();)
4569a895
AT
316 }
317
318PB_DS_CLASS_T_DEC
319inline void
320PB_DS_CLASS_C_DEC::
321update_max(node_pointer p_nd)
322{
8fc81078 323 if (m_p_max == 0 || Cmp_Fn::operator()(m_p_max->m_value, p_nd->m_value))
4569a895
AT
324 m_p_max = p_nd;
325}
326