]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/include/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp
c++config (std::size_t, [...]): Provide typedefs.
[thirdparty/gcc.git] / libstdc++-v3 / include / ext / pb_ds / detail / pat_trie_ / erase_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 erase_fn_imps.hpp
38 * Contains an implementation class for bin_search_tree_.
39 */
40
41PB_DS_CLASS_T_DEC
42inline bool
43PB_DS_CLASS_C_DEC::
44erase(const_key_reference r_key)
45{
46 node_pointer p_nd = find_imp(r_key);
8fc81078 47 if (p_nd == 0 || p_nd->m_type == pat_trie_internal_node_type)
4569a895 48 {
551fe1a2 49 _GLIBCXX_DEBUG_ONLY(debug_base::check_key_does_not_exist(r_key));
1b24692f 50 return false;
4569a895
AT
51 }
52
47bea7b8 53 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
1b24692f 54 if (!synth_e_access_traits::equal_keys(PB_DS_V2F(reinterpret_cast<leaf_pointer>(p_nd)->value()), r_key))
4569a895 55 {
551fe1a2 56 _GLIBCXX_DEBUG_ONLY(debug_base::check_key_does_not_exist(r_key));
1b24692f 57 return false;
4569a895
AT
58 }
59
551fe1a2 60 _GLIBCXX_DEBUG_ONLY(debug_base::check_key_exists(r_key));
4569a895 61 erase_leaf(static_cast<leaf_pointer>(p_nd));
47bea7b8 62 _GLIBCXX_DEBUG_ONLY(assert_valid();)
1b24692f 63 return true;
4569a895
AT
64}
65
66PB_DS_CLASS_T_DEC
67void
68PB_DS_CLASS_C_DEC::
69erase_fixup(internal_node_pointer p_nd)
70{
47bea7b8 71 _GLIBCXX_DEBUG_ASSERT(std::distance(p_nd->begin(), p_nd->end()) >= 1);
4569a895
AT
72 if (std::distance(p_nd->begin(), p_nd->end()) == 1)
73 {
74 node_pointer p_parent = p_nd->m_p_parent;
4569a895
AT
75 if (p_parent == m_p_head)
76 m_p_head->m_p_parent =* p_nd->begin();
77 else
78 {
47bea7b8 79 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type);
4569a895 80 node_pointer p_new_child =* p_nd->begin();
4569a895
AT
81 static_cast<internal_node_pointer>(p_parent)->replace_child(
82 p_new_child,
83 pref_begin(p_new_child),
84 pref_end(p_new_child),
85 this);
86 }
87 (*p_nd->begin())->m_p_parent = p_nd->m_p_parent;
4569a895 88 p_nd->~internal_node();
4569a895
AT
89 s_internal_node_allocator.deallocate(p_nd, 1);
90
91 if (p_parent == m_p_head)
92 return;
93
47bea7b8 94 _GLIBCXX_DEBUG_ASSERT(p_parent->m_type == pat_trie_internal_node_type);
4569a895
AT
95 p_nd = static_cast<internal_node_pointer>(p_parent);
96 }
97
98 while (true)
99 {
47bea7b8 100 _GLIBCXX_DEBUG_ASSERT(std::distance(p_nd->begin(), p_nd->end()) > 1);
4569a895 101 p_nd->update_prefixes(this);
4569a895 102 apply_update(p_nd, (node_update* )this);
47bea7b8 103 _GLIBCXX_DEBUG_ONLY(p_nd->assert_valid(this);)
1b24692f
BK
104 if (p_nd->m_p_parent->m_type == pat_trie_head_node_type)
105 return;
4569a895 106
47bea7b8 107 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_parent->m_type ==
4569a895
AT
108 pat_trie_internal_node_type);
109
110 p_nd = static_cast<internal_node_pointer>(p_nd->m_p_parent);
111 }
112}
113
114PB_DS_CLASS_T_DEC
115inline void
116PB_DS_CLASS_C_DEC::
117actual_erase_leaf(leaf_pointer p_l)
118{
47bea7b8 119 _GLIBCXX_DEBUG_ASSERT(m_size > 0);
4569a895 120 --m_size;
47bea7b8 121 _GLIBCXX_DEBUG_ONLY(erase_existing(PB_DS_V2F(p_l->value())));
4569a895 122 p_l->~leaf();
4569a895
AT
123 s_leaf_allocator.deallocate(p_l, 1);
124}
125
126PB_DS_CLASS_T_DEC
127void
128PB_DS_CLASS_C_DEC::
129clear()
130{
47bea7b8 131 _GLIBCXX_DEBUG_ONLY(assert_valid();)
1b24692f
BK
132 if (empty())
133 return;
4569a895
AT
134
135 clear_imp(m_p_head->m_p_parent);
4569a895 136 m_size = 0;
4569a895 137 initialize();
551fe1a2 138 _GLIBCXX_DEBUG_ONLY(debug_base::clear();)
1b24692f
BK
139 _GLIBCXX_DEBUG_ONLY(assert_valid();)
140}
4569a895
AT
141
142PB_DS_CLASS_T_DEC
143void
144PB_DS_CLASS_C_DEC::
145clear_imp(node_pointer p_nd)
146{
147 if (p_nd->m_type == pat_trie_internal_node_type)
148 {
47bea7b8 149 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_internal_node_type);
4569a895
AT
150 for (typename internal_node::iterator it =
151 static_cast<internal_node_pointer>(p_nd)->begin();
152 it != static_cast<internal_node_pointer>(p_nd)->end();
153 ++it)
154 {
155 node_pointer p_child =* it;
4569a895
AT
156 clear_imp(p_child);
157 }
1b24692f 158 s_internal_node_allocator.deallocate(static_cast<internal_node_pointer>(p_nd), 1);
4569a895
AT
159 return;
160 }
161
47bea7b8 162 _GLIBCXX_DEBUG_ASSERT(p_nd->m_type == pat_trie_leaf_node_type);
4569a895 163 static_cast<leaf_pointer>(p_nd)->~leaf();
1b24692f 164 s_leaf_allocator.deallocate(static_cast<leaf_pointer>(p_nd), 1);
4569a895
AT
165}
166
167PB_DS_CLASS_T_DEC
168inline typename PB_DS_CLASS_C_DEC::const_iterator
169PB_DS_CLASS_C_DEC::
170erase(const_iterator it)
171{
47bea7b8 172 _GLIBCXX_DEBUG_ONLY(assert_valid());
4569a895
AT
173
174 if (it == end())
1b24692f 175 return it;
4569a895
AT
176
177 const_iterator ret_it = it;
4569a895 178 ++ret_it;
47bea7b8 179 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == pat_trie_leaf_node_type);
4569a895 180 erase_leaf(static_cast<leaf_pointer>(it.m_p_nd));
47bea7b8 181 _GLIBCXX_DEBUG_ONLY(assert_valid());
1b24692f 182 return ret_it;
4569a895
AT
183}
184
185#ifdef PB_DS_DATA_TRUE_INDICATOR
186PB_DS_CLASS_T_DEC
187inline typename PB_DS_CLASS_C_DEC::iterator
188PB_DS_CLASS_C_DEC::
189erase(iterator it)
190{
47bea7b8 191 _GLIBCXX_DEBUG_ONLY(assert_valid());
4569a895
AT
192
193 if (it == end())
1b24692f 194 return it;
4569a895 195 iterator ret_it = it;
4569a895 196 ++ret_it;
47bea7b8 197 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == pat_trie_leaf_node_type);
4569a895 198 erase_leaf(static_cast<leaf_pointer>(it.m_p_nd));
47bea7b8 199 _GLIBCXX_DEBUG_ONLY(assert_valid());
1b24692f 200 return ret_it;
4569a895
AT
201}
202#endif // #ifdef PB_DS_DATA_TRUE_INDICATOR
203
204PB_DS_CLASS_T_DEC
205inline typename PB_DS_CLASS_C_DEC::const_reverse_iterator
206PB_DS_CLASS_C_DEC::
207erase(const_reverse_iterator it)
208{
47bea7b8 209 _GLIBCXX_DEBUG_ONLY(assert_valid());
4569a895
AT
210
211 if (it.m_p_nd == m_p_head)
1b24692f 212 return it;
4569a895 213 const_reverse_iterator ret_it = it;
4569a895
AT
214 ++ret_it;
215
47bea7b8 216 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == pat_trie_leaf_node_type);
4569a895 217 erase_leaf(static_cast<leaf_pointer>(it.m_p_nd));
47bea7b8 218 _GLIBCXX_DEBUG_ONLY(assert_valid());
1b24692f 219 return ret_it;
4569a895
AT
220}
221
222#ifdef PB_DS_DATA_TRUE_INDICATOR
223PB_DS_CLASS_T_DEC
224inline typename PB_DS_CLASS_C_DEC::reverse_iterator
225PB_DS_CLASS_C_DEC::
226erase(reverse_iterator it)
227{
47bea7b8 228 _GLIBCXX_DEBUG_ONLY(assert_valid());
4569a895
AT
229
230 if (it.m_p_nd == m_p_head)
1b24692f 231 return it;
4569a895 232 reverse_iterator ret_it = it;
4569a895
AT
233 ++ret_it;
234
47bea7b8 235 _GLIBCXX_DEBUG_ASSERT(it.m_p_nd->m_type == pat_trie_leaf_node_type);
4569a895 236 erase_leaf(static_cast<leaf_pointer>(it.m_p_nd));
47bea7b8 237 _GLIBCXX_DEBUG_ONLY(assert_valid());
1b24692f 238 return ret_it;
4569a895
AT
239}
240#endif // #ifdef PB_DS_DATA_TRUE_INDICATOR
241
242PB_DS_CLASS_T_DEC
243template<typename Pred>
244inline typename PB_DS_CLASS_C_DEC::size_type
245PB_DS_CLASS_C_DEC::
246erase_if(Pred pred)
247{
248 size_type num_ersd = 0;
47bea7b8 249 _GLIBCXX_DEBUG_ONLY(assert_valid();)
4569a895 250
1b24692f 251 iterator it = begin();
4569a895
AT
252 while (it != end())
253 {
47bea7b8 254 _GLIBCXX_DEBUG_ONLY(assert_valid();)
4569a895
AT
255 if (pred(*it))
256 {
257 ++num_ersd;
4569a895
AT
258 it = erase(it);
259 }
260 else
261 ++it;
262 }
263
47bea7b8 264 _GLIBCXX_DEBUG_ONLY(assert_valid();)
1b24692f 265 return num_ersd;
4569a895
AT
266}
267
268PB_DS_CLASS_T_DEC
269void
270PB_DS_CLASS_C_DEC::
271erase_leaf(leaf_pointer p_l)
272{
273 update_min_max_for_erased_leaf(p_l);
4569a895
AT
274 if (p_l->m_p_parent->m_type == pat_trie_head_node_type)
275 {
47bea7b8 276 _GLIBCXX_DEBUG_ASSERT(size() == 1);
4569a895 277 clear();
4569a895
AT
278 return;
279 }
280
47bea7b8 281 _GLIBCXX_DEBUG_ASSERT(size() > 1);
47bea7b8 282 _GLIBCXX_DEBUG_ASSERT(p_l->m_p_parent->m_type ==
4569a895
AT
283 pat_trie_internal_node_type);
284
285 internal_node_pointer p_parent =
286 static_cast<internal_node_pointer>(p_l->m_p_parent);
287
288 p_parent->remove_child(p_l);
4569a895 289 erase_fixup(p_parent);
4569a895
AT
290 actual_erase_leaf(p_l);
291}
292
293PB_DS_CLASS_T_DEC
294void
295PB_DS_CLASS_C_DEC::
296update_min_max_for_erased_leaf(leaf_pointer p_l)
297{
298 if (m_size == 1)
299 {
300 m_p_head->m_p_min = m_p_head;
301 m_p_head->m_p_max = m_p_head;
4569a895
AT
302 return;
303 }
304
305 if (p_l == static_cast<const_leaf_pointer>(m_p_head->m_p_min))
306 {
307 iterator it(p_l);
4569a895 308 ++it;
4569a895 309 m_p_head->m_p_min = it.m_p_nd;
4569a895
AT
310 return;
311 }
312
313 if (p_l == static_cast<const_leaf_pointer>(m_p_head->m_p_max))
314 {
315 iterator it(p_l);
4569a895 316 --it;
4569a895
AT
317 m_p_head->m_p_max = it.m_p_nd;
318 }
319}