]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/include/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp
Update libstdc++ Doxygen config
[thirdparty/gcc.git] / libstdc++-v3 / include / ext / pb_ds / detail / left_child_next_sibling_heap_ / insert_fn_imps.hpp
CommitLineData
4569a895
AT
1// -*- C++ -*-
2
a5544970 3// Copyright (C) 2005-2019 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/**
a345e45d 37 * @file left_child_next_sibling_heap_/insert_fn_imps.hpp
4569a895
AT
38 * Contains an implementation class for left_child_next_sibling_heap_.
39 */
40
41PB_DS_CLASS_T_DEC
42inline typename PB_DS_CLASS_C_DEC::node_pointer
43PB_DS_CLASS_C_DEC::
44get_new_node_for_insert(const_reference r_val)
45{
46 return get_new_node_for_insert(r_val, s_no_throw_copies_ind);
47}
48
49PB_DS_CLASS_T_DEC
50inline typename PB_DS_CLASS_C_DEC::node_pointer
51PB_DS_CLASS_C_DEC::
52get_new_node_for_insert(const_reference r_val, false_type)
53{
54 node_pointer p_new_nd = s_node_allocator.allocate(1);
55
56 cond_dealtor_t cond(p_new_nd);
57
58 new (const_cast<void* >(
59 static_cast<const void* >(&p_new_nd->m_value)))
60 typename node::value_type(r_val);
61
62 cond.set_no_action();
63
64 ++m_size;
65
66 return (p_new_nd);
67}
68
69PB_DS_CLASS_T_DEC
70inline typename PB_DS_CLASS_C_DEC::node_pointer
71PB_DS_CLASS_C_DEC::
72get_new_node_for_insert(const_reference r_val, true_type)
73{
74 node_pointer p_new_nd = s_node_allocator.allocate(1);
75
76 new (const_cast<void* >(
77 static_cast<const void* >(&p_new_nd->m_value)))
78 typename node::value_type(r_val);
79
80 ++m_size;
81
82 return (p_new_nd);
83}
84
85PB_DS_CLASS_T_DEC
86inline void
87PB_DS_CLASS_C_DEC::
88make_child_of(node_pointer p_nd, node_pointer p_new_parent)
89{
8fc81078
PC
90 _GLIBCXX_DEBUG_ASSERT(p_nd != 0);
91 _GLIBCXX_DEBUG_ASSERT(p_new_parent != 0);
4569a895
AT
92
93 p_nd->m_p_next_sibling = p_new_parent->m_p_l_child;
94
8fc81078 95 if (p_new_parent->m_p_l_child != 0)
4569a895
AT
96 p_new_parent->m_p_l_child->m_p_prev_or_parent = p_nd;
97
98 p_nd->m_p_prev_or_parent = p_new_parent;
99
100 p_new_parent->m_p_l_child = p_nd;
101}
102
103PB_DS_CLASS_T_DEC
104inline typename PB_DS_CLASS_C_DEC::node_pointer
105PB_DS_CLASS_C_DEC::
106parent(node_pointer p_nd)
107{
108 while (true)
109 {
110 node_pointer p_pot = p_nd->m_p_prev_or_parent;
111
8fc81078 112 if (p_pot == 0 || p_pot->m_p_l_child == p_nd)
4569a895
AT
113 return p_pot;
114
115 p_nd = p_pot;
116 }
117}
118
119PB_DS_CLASS_T_DEC
120inline void
121PB_DS_CLASS_C_DEC::
122swap_with_parent(node_pointer p_nd, node_pointer p_parent)
123{
124 if (p_parent == m_p_root)
125 m_p_root = p_nd;
126
8fc81078
PC
127 _GLIBCXX_DEBUG_ASSERT(p_nd != 0);
128 _GLIBCXX_DEBUG_ASSERT(p_parent != 0);
47bea7b8 129 _GLIBCXX_DEBUG_ASSERT(parent(p_nd) == p_parent);
4569a895
AT
130
131 const bool nd_direct_child = p_parent->m_p_l_child == p_nd;
8fc81078 132 const bool parent_root = p_parent->m_p_prev_or_parent == 0;
4569a895
AT
133 const bool parent_direct_child =
134 !parent_root&& p_parent->m_p_prev_or_parent->m_p_l_child == p_parent;
135
136 std::swap(p_parent->m_p_prev_or_parent, p_nd->m_p_prev_or_parent);
137 std::swap(p_parent->m_p_next_sibling, p_nd->m_p_next_sibling);
138 std::swap(p_parent->m_p_l_child, p_nd->m_p_l_child);
139 std::swap(p_parent->m_metadata, p_nd->m_metadata);
140
8fc81078
PC
141 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_l_child != 0);
142 _GLIBCXX_DEBUG_ASSERT(p_parent->m_p_prev_or_parent != 0);
4569a895 143
8fc81078 144 if (p_nd->m_p_next_sibling != 0)
4569a895
AT
145 p_nd->m_p_next_sibling->m_p_prev_or_parent = p_nd;
146
8fc81078 147 if (p_parent->m_p_next_sibling != 0)
4569a895
AT
148 p_parent->m_p_next_sibling->m_p_prev_or_parent = p_parent;
149
8fc81078 150 if (p_parent->m_p_l_child != 0)
4569a895
AT
151 p_parent->m_p_l_child->m_p_prev_or_parent = p_parent;
152
153 if (parent_direct_child)
154 p_nd->m_p_prev_or_parent->m_p_l_child = p_nd;
155 else if (!parent_root)
156 p_nd->m_p_prev_or_parent->m_p_next_sibling = p_nd;
157
158 if (!nd_direct_child)
159 {
160 p_nd->m_p_l_child->m_p_prev_or_parent = p_nd;
161
162 p_parent->m_p_prev_or_parent->m_p_next_sibling = p_parent;
163 }
164 else
165 {
47bea7b8
BK
166 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_l_child == p_nd);
167 _GLIBCXX_DEBUG_ASSERT(p_parent->m_p_prev_or_parent == p_parent);
4569a895
AT
168
169 p_nd->m_p_l_child = p_parent;
170 p_parent->m_p_prev_or_parent = p_nd;
171 }
172
47bea7b8 173 _GLIBCXX_DEBUG_ASSERT(parent(p_parent) == p_nd);
4569a895
AT
174}
175