-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlinked_queue.hpp
360 lines (284 loc) · 6.93 KB
/
linked_queue.hpp
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
/**
* @file linked_queue.hpp
* @brief
* @date 2019-11-16
* @author Peter
* @copyright
* Peter of [ThinkSpirit Laboratory](http://thinkspirit.org/)
* of [Nanjing University of Information Science & Technology](http://www.nuist.edu.cn/)
* all rights reserved
*/
#ifndef KERBAL_CONTAINER_LINKED_QUEUE_HPP
#define KERBAL_CONTAINER_LINKED_QUEUE_HPP
#include <kerbal/compatibility/constexpr.hpp>
#include <kerbal/compatibility/namespace_std_scope.hpp>
#include <kerbal/compatibility/noexcept.hpp>
#include <kerbal/container/single_list.hpp>
#if __cplusplus < 201103L
# include <kerbal/macro/macro_concat.hpp>
# include <kerbal/macro/ppexpand.hpp>
#endif
#if __cplusplus >= 201103L
# include <kerbal/compatibility/move.hpp>
# include <kerbal/utility/forward.hpp>
#endif
#if __cplusplus >= 201103L
# include <initializer_list>
#endif
namespace kerbal
{
namespace container
{
template <typename T, typename Sequence = kerbal::container::single_list<T> >
class linked_queue
{
public:
typedef T value_type;
typedef const value_type const_type;
typedef value_type & reference;
typedef const value_type & const_reference;
typedef value_type * pointer;
typedef const value_type * const_pointer;
# if __cplusplus >= 201103L
typedef value_type && rvalue_reference;
typedef const value_type && const_rvalue_reference;
# endif
typedef typename Sequence::allocator_type allocator_type;
typedef typename Sequence::size_type size_type;
typedef typename Sequence::difference_type difference_type;
private:
Sequence c;
public:
//===================
// construct/copy/destroy
KERBAL_CONSTEXPR20
linked_queue() :
c()
{
}
KERBAL_CONSTEXPR20
explicit
linked_queue(const allocator_type & alloc) :
c(alloc)
{
}
template <typename InputIterator>
KERBAL_CONSTEXPR20
linked_queue(
InputIterator first, InputIterator last,
typename kerbal::type_traits::enable_if<
kerbal::iterator::is_input_compatible_iterator<InputIterator>::value,
int
>::type = 0
) :
c(first, last)
{
}
# if __cplusplus >= 201103L
KERBAL_CONSTEXPR20
linked_queue(std::initializer_list<value_type> ilist) :
c(ilist)
{
}
# endif
//===================
// element access
KERBAL_CONSTEXPR20
reference front()
{
return c.front();
}
KERBAL_CONSTEXPR20
const_reference front() const
{
return c.front();
}
KERBAL_CONSTEXPR20
reference back()
{
return c.back();
}
KERBAL_CONSTEXPR20
const_reference back() const
{
return c.back();
}
//===================
// capacity
KERBAL_CONSTEXPR20
bool empty() const
{
return c.empty();
}
KERBAL_CONSTEXPR20
size_type size() const
{
return c.size();
}
KERBAL_CONSTEXPR
size_type max_size() const
{
return c.max_size();
}
//===================
// insert
# if __cplusplus >= 201103L
template <typename ... Args>
KERBAL_CONSTEXPR20
reference emplace(Args && ... args)
{
return c.emplace_back(kerbal::utility::forward<Args>(args)...);
}
# else
# define EMPTY
# define REMAINF(exp) exp
# define THEAD_NOT_EMPTY(exp) template <exp>
# define TARGS_DECL(i) typename KERBAL_MACRO_CONCAT(Arg, i)
# define ARGS_DECL(i) const KERBAL_MACRO_CONCAT(Arg, i) & KERBAL_MACRO_CONCAT(arg, i)
# define ARGS_USE(i) KERBAL_MACRO_CONCAT(arg, i)
# define FBODY(i) \
KERBAL_OPT_PPEXPAND_WITH_COMMA_N(THEAD_NOT_EMPTY, EMPTY, TARGS_DECL, i) \
reference emplace(KERBAL_OPT_PPEXPAND_WITH_COMMA_N(REMAINF, EMPTY, ARGS_DECL, i)) \
{ \
return c.emplace_back(KERBAL_OPT_PPEXPAND_WITH_COMMA_N(REMAINF, EMPTY, ARGS_USE, i)); \
} \
KERBAL_PPEXPAND_N(FBODY, KERBAL_PPEXPAND_EMPTY_SEPARATOR, 0)
KERBAL_PPEXPAND_N(FBODY, KERBAL_PPEXPAND_EMPTY_SEPARATOR, 20)
# undef EMPTY
# undef REMAINF
# undef THEAD_NOT_EMPTY
# undef TARGS_DECL
# undef ARGS_DECL
# undef ARGS_USE
# undef FBODY
# endif
KERBAL_CONSTEXPR20
void push(const_reference val)
{
c.push_back(val);
}
# if __cplusplus >= 201103L
KERBAL_CONSTEXPR20
void push(rvalue_reference val)
{
c.push_back(kerbal::compatibility::move(val));
}
# endif
//===================
// erase
KERBAL_CONSTEXPR20
void pop()
{
c.pop_front();
}
KERBAL_CONSTEXPR20
void clear()
{
c.clear();
}
//===================
// operation
KERBAL_CONSTEXPR20
void swap(linked_queue & with)
{
c.swap(with.c);
}
/**
* Judge whether the queue is equal to the other one.
* @param rhs another queue
*/
KERBAL_CONSTEXPR20
friend
bool operator==(
const linked_queue<T, Sequence> & lhs,
const linked_queue<T, Sequence> & rhs
)
{
return lhs.c == rhs.c;
}
KERBAL_CONSTEXPR20
friend
bool operator!=(
const linked_queue<T, Sequence> & lhs,
const linked_queue<T, Sequence> & rhs
)
{
return lhs.c != rhs.c;
}
KERBAL_CONSTEXPR20
friend
bool operator<(
const linked_queue<T, Sequence> & lhs,
const linked_queue<T, Sequence> & rhs
)
{
return lhs.c < rhs.c;
}
KERBAL_CONSTEXPR20
friend
bool operator<=(
const linked_queue<T, Sequence> & lhs,
const linked_queue<T, Sequence> & rhs
)
{
return lhs.c <= rhs.c;
}
KERBAL_CONSTEXPR20
friend
bool operator>(
const linked_queue<T, Sequence> & lhs,
const linked_queue<T, Sequence> & rhs
)
{
return lhs.c > rhs.c;
}
KERBAL_CONSTEXPR20
friend
bool operator>=(
const linked_queue<T, Sequence> & lhs,
const linked_queue<T, Sequence> & rhs
)
{
return lhs.c >= rhs.c;
}
};
# if __cplusplus >= 201703L
template <typename InputIterator>
linked_queue(InputIterator, InputIterator) ->
linked_queue<typename kerbal::iterator::iterator_traits<InputIterator>::value_type>;
# if __has_include(<memory_resource>)
namespace pmr
{
template <typename T>
using linked_queue = kerbal::container::linked_queue<T, kerbal::container::pmr::single_list<T> >;
}
# endif
# endif
} // namespace container
namespace algorithm
{
template <typename T, typename Sequence>
KERBAL_CONSTEXPR20
void swap(
kerbal::container::linked_queue<T, Sequence> & a,
kerbal::container::linked_queue<T, Sequence> & b
)
KERBAL_CONDITIONAL_NOEXCEPT(noexcept(a.swap(b)))
{
a.swap(b);
}
} // namespace algorithm
} // namespace kerbal
KERBAL_NAMESPACE_STD_BEGIN
template <typename T, typename Sequence>
KERBAL_CONSTEXPR14
void swap(
kerbal::container::linked_queue<T, Sequence> & a,
kerbal::container::linked_queue<T, Sequence> & b
)
KERBAL_CONDITIONAL_NOEXCEPT(noexcept(a.swap(b)))
{
a.swap(b);
}
KERBAL_NAMESPACE_STD_END
#endif // KERBAL_CONTAINER_LINKED_QUEUE_HPP