]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/include/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / include / ext / pb_ds / detail / bin_search_tree_ / find_fn_imps.hpp
CommitLineData
4569a895
AT
1// -*- C++ -*-
2
a945c346 3// Copyright (C) 2005-2024 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 bin_search_tree_/find_fn_imps.hpp
4569a895
AT
38 * Contains an implementation class for bin_search_tree_.
39 */
40
574dfb67
JW
41#ifdef PB_DS_CLASS_C_DEC
42
4569a895 43PB_DS_CLASS_T_DEC
a345e45d 44inline typename PB_DS_CLASS_C_DEC::point_const_iterator
4569a895 45PB_DS_CLASS_C_DEC::
a345e45d 46lower_bound(key_const_reference r_key) const
4569a895
AT
47{
48 node_pointer p_pot = m_p_head;
49 node_pointer p_nd = m_p_head->m_p_parent;
50
8fc81078 51 while (p_nd != 0)
a345e45d 52 if (Cmp_Fn::operator()(PB_DS_V2F(p_nd->m_value), r_key))
4569a895
AT
53 p_nd = p_nd->m_p_right;
54 else
55 {
56 p_pot = p_nd;
4569a895
AT
57 p_nd = p_nd->m_p_left;
58 }
a345e45d 59 return iterator(p_pot);
4569a895
AT
60}
61
62PB_DS_CLASS_T_DEC
63inline typename PB_DS_CLASS_C_DEC::point_iterator
64PB_DS_CLASS_C_DEC::
a345e45d 65lower_bound(key_const_reference r_key)
4569a895
AT
66{
67 node_pointer p_pot = m_p_head;
68 node_pointer p_nd = m_p_head->m_p_parent;
69
8fc81078 70 while (p_nd != 0)
a345e45d 71 if (Cmp_Fn::operator()(PB_DS_V2F(p_nd->m_value), r_key))
4569a895
AT
72 p_nd = p_nd->m_p_right;
73 else
74 {
75 p_pot = p_nd;
4569a895
AT
76 p_nd = p_nd->m_p_left;
77 }
a345e45d 78 return iterator(p_pot);
4569a895
AT
79}
80
81PB_DS_CLASS_T_DEC
a345e45d 82inline typename PB_DS_CLASS_C_DEC::point_const_iterator
4569a895 83PB_DS_CLASS_C_DEC::
a345e45d 84upper_bound(key_const_reference r_key) const
4569a895
AT
85{
86 node_pointer p_pot = m_p_head;
87 node_pointer p_nd = m_p_head->m_p_parent;
88
8fc81078 89 while (p_nd != 0)
a345e45d 90 if (Cmp_Fn::operator()(r_key, PB_DS_V2F(p_nd->m_value)))
4569a895 91 {
a345e45d
BK
92 p_pot = p_nd;
93 p_nd = p_nd->m_p_left;
4569a895
AT
94 }
95 else
96 p_nd = p_nd->m_p_right;
a345e45d 97 return const_iterator(p_pot);
4569a895
AT
98}
99
100PB_DS_CLASS_T_DEC
101inline typename PB_DS_CLASS_C_DEC::point_iterator
102PB_DS_CLASS_C_DEC::
a345e45d 103upper_bound(key_const_reference r_key)
4569a895
AT
104{
105 node_pointer p_pot = m_p_head;
106 node_pointer p_nd = m_p_head->m_p_parent;
107
8fc81078 108 while (p_nd != 0)
a345e45d 109 if (Cmp_Fn::operator()(r_key, PB_DS_V2F(p_nd->m_value)))
4569a895 110 {
a345e45d
BK
111 p_pot = p_nd;
112 p_nd = p_nd->m_p_left;
4569a895
AT
113 }
114 else
115 p_nd = p_nd->m_p_right;
a345e45d 116 return point_iterator(p_pot);
4569a895
AT
117}
118
119PB_DS_CLASS_T_DEC
120inline typename PB_DS_CLASS_C_DEC::point_iterator
121PB_DS_CLASS_C_DEC::
a345e45d 122find(key_const_reference r_key)
4569a895 123{
f5886803 124 PB_DS_STRUCT_ONLY_ASSERT_VALID((*this))
f5886803 125 node_pointer p_pot = m_p_head;
4569a895
AT
126 node_pointer p_nd = m_p_head->m_p_parent;
127
8fc81078 128 while (p_nd != 0)
4569a895
AT
129 if (!Cmp_Fn::operator()(PB_DS_V2F(p_nd->m_value), r_key))
130 {
131 p_pot = p_nd;
4569a895
AT
132 p_nd = p_nd->m_p_left;
133 }
134 else
135 p_nd = p_nd->m_p_right;
136
a345e45d
BK
137 node_pointer ret = p_pot;
138 if (p_pot != m_p_head)
139 {
140 const bool __cmp = Cmp_Fn::operator()(r_key, PB_DS_V2F(p_pot->m_value));
141 if (__cmp)
142 ret = m_p_head;
143 }
144 return point_iterator(ret);
4569a895
AT
145}
146
147PB_DS_CLASS_T_DEC
a345e45d 148inline typename PB_DS_CLASS_C_DEC::point_const_iterator
4569a895 149PB_DS_CLASS_C_DEC::
a345e45d 150find(key_const_reference r_key) const
4569a895 151{
f5886803 152 PB_DS_STRUCT_ONLY_ASSERT_VALID((*this))
f5886803 153 node_pointer p_pot = m_p_head;
4569a895
AT
154 node_pointer p_nd = m_p_head->m_p_parent;
155
8fc81078 156 while (p_nd != 0)
4569a895
AT
157 if (!Cmp_Fn::operator()(PB_DS_V2F(p_nd->m_value), r_key))
158 {
159 p_pot = p_nd;
4569a895
AT
160 p_nd = p_nd->m_p_left;
161 }
162 else
163 p_nd = p_nd->m_p_right;
164
a345e45d
BK
165 node_pointer ret = p_pot;
166 if (p_pot != m_p_head)
167 {
168 const bool __cmp = Cmp_Fn::operator()(r_key, PB_DS_V2F(p_pot->m_value));
169 if (__cmp)
170 ret = m_p_head;
171 }
172 return point_const_iterator(ret);
4569a895 173}
574dfb67 174#endif