OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [libstdc++-v3/] [include/] [ext/] [pb_assoc/] [detail/] [bin_search_tree_/] [find_fn_imps.hpp] - Blame information for rev 17

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 17 jlechner
// -*- C++ -*-
2
 
3
// Copyright (C) 2005 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
7
// terms of the GNU General Public License as published by the
8
// Free Software Foundation; either version 2, or (at your option)
9
// any later version.
10
 
11
// This library is distributed in the hope that it will be useful,
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
// GNU General Public License for more details.
15
 
16
// You should have received a copy of the GNU General Public License along
17
// with this library; see the file COPYING.  If not, write to the Free
18
// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19
// USA.
20
 
21
// As a special exception, you may use this file as part of a free software
22
// library without restriction.  Specifically, if other files instantiate
23
// templates or use macros or inline functions from this file, or you compile
24
// this file and link it with other files to produce an executable, this
25
// file does not by itself cause the resulting executable to be covered by
26
// the GNU General Public License.  This exception does not however
27
// invalidate any other reasons why the executable file might be covered by
28
// the GNU General Public License.
29
 
30
// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
31
 
32
// Permission to use, copy, modify, sell, and distribute this software
33
// is hereby granted without fee, provided that the above copyright
34
// notice appears in all copies, and that both that copyright notice and
35
// this permission notice appear in supporting documentation. None of
36
// the above authors, nor IBM Haifa Research Laboratories, make any
37
// representation about the suitability of this software for any
38
// purpose. It is provided "as is" without express or implied warranty.
39
 
40
/**
41
 * @file find_fn_imps.hpp
42
 * Contains an implementation class for bin_search_tree_.
43
 */
44
 
45
PB_ASSOC_CLASS_T_DEC
46
inline typename PB_ASSOC_CLASS_C_DEC::const_find_iterator
47
PB_ASSOC_CLASS_C_DEC::
48
lower_bound(const_key_reference r_key) const
49
{
50
  node_pointer p_pot = m_p_head;
51
  node_pointer p_nd = m_p_head->m_p_parent;
52
 
53
  while (p_nd != NULL)
54
    if (!Cmp_Fn::operator()(PB_ASSOC_V2F(p_nd->m_value), r_key))
55
      {
56
        p_pot = p_nd;
57
 
58
        p_nd = p_nd->m_p_left;
59
      }
60
    else
61
      p_nd = p_nd->m_p_right;
62
 
63
  return (iterator(p_pot));
64
}
65
 
66
PB_ASSOC_CLASS_T_DEC
67
inline typename PB_ASSOC_CLASS_C_DEC::find_iterator
68
PB_ASSOC_CLASS_C_DEC::
69
lower_bound(const_key_reference r_key)
70
{
71
  node_pointer p_pot = m_p_head;
72
  node_pointer p_nd = m_p_head->m_p_parent;
73
 
74
  while (p_nd != NULL)
75
    if (!Cmp_Fn::operator()(
76
                            PB_ASSOC_V2F(p_nd->m_value),
77
                            r_key))
78
      {
79
        p_pot = p_nd;
80
 
81
        p_nd = p_nd->m_p_left;
82
      }
83
    else
84
      p_nd = p_nd->m_p_right;
85
 
86
  return (iterator(p_pot));
87
}
88
 
89
PB_ASSOC_CLASS_T_DEC
90
inline typename PB_ASSOC_CLASS_C_DEC::const_find_iterator
91
PB_ASSOC_CLASS_C_DEC::
92
upper_bound(const_key_reference r_key) const
93
{
94
  node_pointer p_pot = m_p_head;
95
  node_pointer p_nd = m_p_head->m_p_parent;
96
 
97
  while (p_nd != NULL)
98
    if (Cmp_Fn::operator()(r_key,
99
                           PB_ASSOC_V2F(p_nd->m_value)))
100
      {
101
        p_pot = p_nd,
102
 
103
          p_nd = p_nd->m_p_left;
104
      }
105
    else
106
      p_nd = p_nd->m_p_right;
107
 
108
  return (const_iterator(p_pot));
109
}
110
 
111
PB_ASSOC_CLASS_T_DEC
112
inline typename PB_ASSOC_CLASS_C_DEC::find_iterator
113
PB_ASSOC_CLASS_C_DEC::
114
upper_bound(const_key_reference r_key)
115
{
116
  node_pointer p_pot = m_p_head;
117
  node_pointer p_nd = m_p_head->m_p_parent;
118
 
119
  while (p_nd != NULL)
120
    if (Cmp_Fn::operator()(r_key,
121
                           PB_ASSOC_V2F(p_nd->m_value)))
122
      {
123
        p_pot = p_nd,
124
 
125
          p_nd = p_nd->m_p_left;
126
      }
127
    else
128
      p_nd = p_nd->m_p_right;
129
 
130
  return (find_iterator(p_pot));
131
}
132
 
133
PB_ASSOC_CLASS_T_DEC
134
inline typename PB_ASSOC_CLASS_C_DEC::find_iterator
135
PB_ASSOC_CLASS_C_DEC::
136
find(const_key_reference r_key)
137
{
138
  PB_ASSOC_DBG_ONLY(assert_valid(true, false);)
139
 
140
    node_pointer p_pot = m_p_head;
141
  node_pointer p_nd = m_p_head->m_p_parent;
142
 
143
  while (p_nd != NULL)
144
    if (!Cmp_Fn::operator()(PB_ASSOC_V2F(p_nd->m_value), r_key))
145
      {
146
        p_pot = p_nd;
147
 
148
        p_nd = p_nd->m_p_left;
149
      }
150
    else
151
      p_nd = p_nd->m_p_right;
152
 
153
  return find_iterator((p_pot != m_p_head&&  Cmp_Fn::operator()(
154
                                                                r_key,
155
                                                                PB_ASSOC_V2F(p_pot->m_value)))?
156
                       m_p_head : p_pot);
157
}
158
 
159
PB_ASSOC_CLASS_T_DEC
160
inline typename PB_ASSOC_CLASS_C_DEC::const_find_iterator
161
PB_ASSOC_CLASS_C_DEC::
162
find(const_key_reference r_key) const
163
{
164
  PB_ASSOC_DBG_ONLY(assert_valid(true, true);)
165
 
166
    node_pointer p_pot = m_p_head;
167
  node_pointer p_nd = m_p_head->m_p_parent;
168
 
169
  while (p_nd != NULL)
170
    if (!Cmp_Fn::operator()(PB_ASSOC_V2F(p_nd->m_value), r_key))
171
      {
172
        p_pot = p_nd;
173
 
174
        p_nd = p_nd->m_p_left;
175
      }
176
    else
177
      p_nd = p_nd->m_p_right;
178
 
179
  return const_find_iterator((p_pot != m_p_head&&  Cmp_Fn::operator()(
180
                                                                      r_key,
181
                                                                      PB_ASSOC_V2F(p_pot->m_value)))?
182
                             m_p_head : p_pot);
183
}
184
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.