-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtstack.hpp
More file actions
214 lines (204 loc) · 7.09 KB
/
tstack.hpp
File metadata and controls
214 lines (204 loc) · 7.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
#ifndef TSTACK_HPP
#define TSTACK_HPP
#include <tdeque.hpp>
#include <initializer_list>
#include <cassert>
namespace tstd
{
// need forward template declaration of stack for comparision function template declarations.
// default template arguments should only occur at first time (no matter a definition or a declaration).
template<typename T, typename Container = tstd::deque<T>>
class stack;
// need template declaration for friend declaration
template<typename T, typename Container>
constexpr bool operator==(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs);
template<typename T, typename Container>
constexpr bool operator!=(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs);
template<typename T, typename Container>
constexpr bool operator<(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs);
template<typename T, typename Container>
constexpr bool operator<=(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs);
template<typename T, typename Container>
constexpr bool operator>(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs);
template<typename T, typename Container>
constexpr bool operator>=(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs);
template<typename T, typename Container>
class stack
{
// template arguments are needed in friend declaration, or else these will become non-template friend functions declaration.
friend constexpr bool operator== <T, Container>(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs);
friend constexpr bool operator!= <T, Container>(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs);
friend constexpr bool operator< <T, Container>(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs);
friend constexpr bool operator<= <T, Container>(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs);
friend constexpr bool operator> <T, Container>(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs);
friend constexpr bool operator>= <T, Container>(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs);
public:
using container_type = Container;
using value_type = typename Container::value_type;
using size_type = typename Container::size_type;
using reference = typename Container::reference;
using const_reference = typename Container::const_reference;
public:
stack() : stack(Container()) {} // 1
explicit stack(const Container& cont) // 2
: c(cont)
{
}
explicit stack(Container&& cont) // 3
: c(std::move(cont))
{
}
stack(const stack& other) // 4
: c(other.c)
{
}
stack(stack&& other) // 5
: c(std::move(other.c))
{
}
// since C++23
// template<typename InputIterator,
// typename = std::enable_if_t<std::is_base_of_v<typename std::input_iterator_tag, typename std::iterator_traits<InputIterator>::iterator_category>>>
// stack(InputIterator first, InputIterator last) // 6
// : c(first, last)
// {
// }
template<typename Allocator,
typename = std::enable_if_t<std::uses_allocator_v<Container, Allocator>>>
explicit stack(const Allocator& alloc) // 7
: c(alloc)
{
}
template<typename Allocator,
typename = std::enable_if_t<std::uses_allocator_v<Container, Allocator>>>
stack(const Container& cont, const Allocator& alloc) // 8
: c(cont, alloc)
{
}
template<typename Allocator,
typename = std::enable_if_t<std::uses_allocator_v<Container, Allocator>>>
stack(Container&& cont, const Allocator& alloc) // 9
: c(std::move(cont), alloc)
{
}
template<typename Allocator,
typename = std::enable_if_t<std::uses_allocator_v<Container, Allocator>>>
stack(const stack& other, const Allocator& alloc) // 10
: c(other.c, alloc)
{
}
template<typename Allocator,
typename = std::enable_if_t<std::uses_allocator_v<Container, Allocator>>>
stack(stack&& other, const Allocator& alloc) // 11
: c(std::move(other.c), alloc)
{
}
// since C++23
// template<typename InputIterator, typename Allocator,
// typename = std::enable_if_t<std::is_base_of_v<typename std::input_iterator_tag, typename std::iterator_traits<InputIterator>::iterator_category>>,
// typename = std::enable_if_t<std::uses_allocator_v<Container, Allocator>>>
// stack(InputIterator first, InputIterator last, const Allocator& alloc) // 12
// : c(first, last, alloc)
// {
// }
~stack()
{
}
// assignment
stack& operator=(const stack& other)
{
c = other.c;
return *this;
}
stack& operator=(stack&& other)
{
c = std::move(other.c);
return *this;
}
// element access
reference top()
{
assert(!c.empty());
return c.back();
}
const_reference top() const
{
assert(!c.empty());
return c.back();
}
// size and capacity
[[nodiscard]] bool empty() const
{
return c.empty();
}
size_type size() const
{
return c.size();
}
// modifiers
void push(const value_type& value)
{
c.push_back(value);
}
void push(value_type&& value)
{
c.push_back(std::move(value));
}
template<typename... Args>
decltype(auto) emplace(Args&&... args)
{
return c.emplace_back(std::forward<Args>(args)...);
}
void pop()
{
assert(!c.empty());
c.pop_back();
}
void swap(stack& other) noexcept(std::is_nothrow_swappable_v<Container>)
{
using tstd::swap;
swap(c, other.c);
}
protected:
Container c;
};
// non-member operations
// comparisons
template<typename T, typename Container>
constexpr bool operator==(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs)
{
return lhs.c == rhs.c;
}
template<typename T, typename Container>
constexpr bool operator!=(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs)
{
return lhs.c != rhs.c;
}
template<typename T, typename Container>
constexpr bool operator<(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs)
{
return lhs.c < rhs.c;
}
template<typename T, typename Container>
constexpr bool operator<=(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs)
{
return lhs.c <= rhs.c;
}
template<typename T, typename Container>
constexpr bool operator>(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs)
{
return lhs.c > rhs.c;
}
template<typename T, typename Container>
constexpr bool operator>=(const tstd::stack<T, Container>& lhs, const tstd::stack<T, Container>& rhs)
{
return lhs.c >= rhs.c;
}
// global swap for tstd::stack
template<typename T, typename Container>
constexpr void swap(tstd::stack<T, Container>& lhs, tstd::stack<T, Container>& rhs) noexcept(noexcept(lhs.swap(rhs)))
{
lhs.swap(rhs);
}
} // namespace tstd
#endif // TSTACK_HPP