1 // Stack implementation -*- C++ -*-
3 // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
5 // Free Software Foundation, Inc.
7 // This file is part of the GNU ISO C++ Library. This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 3, or (at your option)
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // Under Section 7 of GPL version 3, you are granted additional
19 // permissions described in the GCC Runtime Library Exception, version
20 // 3.1, as published by the Free Software Foundation.
22 // You should have received a copy of the GNU General Public License and
23 // a copy of the GCC Runtime Library Exception along with this program;
24 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 // <http://www.gnu.org/licenses/>.
30 * Hewlett-Packard Company
32 * Permission to use, copy, modify, distribute and sell this software
33 * and its documentation for any purpose is hereby granted without fee,
34 * provided that the above copyright notice appear in all copies and
35 * that both that copyright notice and this permission notice appear
36 * in supporting documentation. Hewlett-Packard Company makes no
37 * representations about the suitability of this software for any
38 * purpose. It is provided "as is" without express or implied warranty.
41 * Copyright (c) 1996,1997
42 * Silicon Graphics Computer Systems, Inc.
44 * Permission to use, copy, modify, distribute and sell this software
45 * and its documentation for any purpose is hereby granted without fee,
46 * provided that the above copyright notice appear in all copies and
47 * that both that copyright notice and this permission notice appear
48 * in supporting documentation. Silicon Graphics makes no
49 * representations about the suitability of this software for any
50 * purpose. It is provided "as is" without express or implied warranty.
53 /** @file bits/stl_stack.h
54 * This is an internal header file, included by other library headers.
55 * Do not attempt to use it directly. @headername{stack}
59 #define _STL_STACK_H 1
61 #include <bits/concept_check.h>
62 #include <debug/debug.h>
64 namespace std
_GLIBCXX_VISIBILITY(default)
66 _GLIBCXX_BEGIN_NAMESPACE_VERSION
69 * @brief A standard container giving FILO behavior.
73 * Meets many of the requirements of a
74 * <a href="tables.html#65">container</a>,
75 * but does not define anything to do with iterators. Very few of the
76 * other standard container interfaces are defined.
78 * This is not a true container, but an @e adaptor. It holds
79 * another container, and provides a wrapper interface to that
80 * container. The wrapper is what enforces strict
81 * first-in-last-out %stack behavior.
83 * The second template parameter defines the type of the underlying
84 * sequence/container. It defaults to std::deque, but it can be
85 * any type that supports @c back, @c push_back, and @c pop_front,
86 * such as std::list, std::vector, or an appropriate user-defined
89 * Members not found in @a normal containers are @c container_type,
90 * which is a typedef for the second Sequence parameter, and @c
91 * push, @c pop, and @c top, which are standard %stack/FILO
94 template<typename _Tp
, typename _Sequence
= deque
<_Tp
> >
97 // concept requirements
98 typedef typename
_Sequence::value_type _Sequence_value_type
;
99 __glibcxx_class_requires(_Tp
, _SGIAssignableConcept
)
100 __glibcxx_class_requires(_Sequence
, _BackInsertionSequenceConcept
)
101 __glibcxx_class_requires2(_Tp
, _Sequence_value_type
, _SameTypeConcept
)
103 template<typename _Tp1
, typename _Seq1
>
105 operator==(const stack
<_Tp1
, _Seq1
>&, const stack
<_Tp1
, _Seq1
>&);
107 template<typename _Tp1
, typename _Seq1
>
109 operator<(const stack
<_Tp1
, _Seq1
>&, const stack
<_Tp1
, _Seq1
>&);
112 typedef typename
_Sequence::value_type value_type
;
113 typedef typename
_Sequence::reference reference
;
114 typedef typename
_Sequence::const_reference const_reference
;
115 typedef typename
_Sequence::size_type size_type
;
116 typedef _Sequence container_type
;
119 // See queue::c for notes on this name.
123 // XXX removed old def ctor, added def arg to this one to match 14882
125 * @brief Default constructor creates no elements.
127 #ifndef __GXX_EXPERIMENTAL_CXX0X__
129 stack(const _Sequence
& __c
= _Sequence())
133 stack(const _Sequence
& __c
)
137 stack(_Sequence
&& __c
= _Sequence())
138 : c(std::move(__c
)) { }
142 * Returns true if the %stack is empty.
146 { return c
.empty(); }
148 /** Returns the number of elements in the %stack. */
154 * Returns a read/write reference to the data at the first
155 * element of the %stack.
160 __glibcxx_requires_nonempty();
165 * Returns a read-only (constant) reference to the data at the first
166 * element of the %stack.
171 __glibcxx_requires_nonempty();
176 * @brief Add data to the top of the %stack.
177 * @param __x Data to be added.
179 * This is a typical %stack operation. The function creates an
180 * element at the top of the %stack and assigns the given data
181 * to it. The time complexity of the operation depends on the
182 * underlying sequence.
185 push(const value_type
& __x
)
186 { c
.push_back(__x
); }
188 #ifdef __GXX_EXPERIMENTAL_CXX0X__
190 push(value_type
&& __x
)
191 { c
.push_back(std::move(__x
)); }
193 template<typename
... _Args
>
195 emplace(_Args
&&... __args
)
196 { c
.emplace_back(std::forward
<_Args
>(__args
)...); }
200 * @brief Removes first element.
202 * This is a typical %stack operation. It shrinks the %stack
203 * by one. The time complexity of the operation depends on the
204 * underlying sequence.
206 * Note that no data is returned, and if the first element's
207 * data is needed, it should be retrieved before pop() is
213 __glibcxx_requires_nonempty();
217 #ifdef __GXX_EXPERIMENTAL_CXX0X__
220 noexcept(noexcept(swap(c
, __s
.c
)))
229 * @brief Stack equality comparison.
230 * @param __x A %stack.
231 * @param __y A %stack of the same type as @a __x.
232 * @return True iff the size and elements of the stacks are equal.
234 * This is an equivalence relation. Complexity and semantics
235 * depend on the underlying sequence type, but the expected rules
236 * are: this relation is linear in the size of the sequences, and
237 * stacks are considered equivalent if their sequences compare
240 template<typename _Tp
, typename _Seq
>
242 operator==(const stack
<_Tp
, _Seq
>& __x
, const stack
<_Tp
, _Seq
>& __y
)
243 { return __x
.c
== __y
.c
; }
246 * @brief Stack ordering relation.
247 * @param __x A %stack.
248 * @param __y A %stack of the same type as @a x.
249 * @return True iff @a x is lexicographically less than @a __y.
251 * This is an total ordering relation. Complexity and semantics
252 * depend on the underlying sequence type, but the expected rules
253 * are: this relation is linear in the size of the sequences, the
254 * elements must be comparable with @c <, and
255 * std::lexicographical_compare() is usually used to make the
258 template<typename _Tp
, typename _Seq
>
260 operator<(const stack
<_Tp
, _Seq
>& __x
, const stack
<_Tp
, _Seq
>& __y
)
261 { return __x
.c
< __y
.c
; }
263 /// Based on operator==
264 template<typename _Tp
, typename _Seq
>
266 operator!=(const stack
<_Tp
, _Seq
>& __x
, const stack
<_Tp
, _Seq
>& __y
)
267 { return !(__x
== __y
); }
269 /// Based on operator<
270 template<typename _Tp
, typename _Seq
>
272 operator>(const stack
<_Tp
, _Seq
>& __x
, const stack
<_Tp
, _Seq
>& __y
)
273 { return __y
< __x
; }
275 /// Based on operator<
276 template<typename _Tp
, typename _Seq
>
278 operator<=(const stack
<_Tp
, _Seq
>& __x
, const stack
<_Tp
, _Seq
>& __y
)
279 { return !(__y
< __x
); }
281 /// Based on operator<
282 template<typename _Tp
, typename _Seq
>
284 operator>=(const stack
<_Tp
, _Seq
>& __x
, const stack
<_Tp
, _Seq
>& __y
)
285 { return !(__x
< __y
); }
287 #ifdef __GXX_EXPERIMENTAL_CXX0X__
288 template<typename _Tp
, typename _Seq
>
290 swap(stack
<_Tp
, _Seq
>& __x
, stack
<_Tp
, _Seq
>& __y
)
291 noexcept(noexcept(__x
.swap(__y
)))
294 template<typename _Tp
, typename _Seq
, typename _Alloc
>
295 struct uses_allocator
<stack
<_Tp
, _Seq
>, _Alloc
>
296 : public uses_allocator
<_Seq
, _Alloc
>::type
{ };
299 _GLIBCXX_END_NAMESPACE_VERSION
302 #endif /* _STL_STACK_H */