-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtqueue.hpp
More file actions
453 lines (438 loc) · 15.1 KB
/
tqueue.hpp
File metadata and controls
453 lines (438 loc) · 15.1 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
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
#ifndef TQUEUE_HPP
#define TQUEUE_HPP
#include <tdeque.hpp>
#include <initializer_list>
#include <tstl_heap.hpp>
#include <tvector.hpp>
#include <functional> // todo: replace with <tfunctional.hpp>
#include <type_traits>
namespace tstd
{
template<typename T, typename Container = tstd::deque<T>>
class queue;
template<typename T, typename Container>
constexpr bool operator==(const tstd::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs);
template<typename T, typename Container>
constexpr bool operator!=(const tstd::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs);
template<typename T, typename Container>
constexpr bool operator<(const tstd::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs);
template<typename T, typename Container>
constexpr bool operator<=(const tstd::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs);
template<typename T, typename Container>
constexpr bool operator>(const tstd::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs);
template<typename T, typename Container>
constexpr bool operator>=(const tstd::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs);
template<typename T, typename Container>
class queue
{
friend constexpr bool operator== <T, Container>(const tstd::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs);
friend constexpr bool operator!= <T, Container>(const tstd::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs);
friend constexpr bool operator< <T, Container>(const tstd::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs);
friend constexpr bool operator<= <T, Container>(const tstd::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs);
friend constexpr bool operator> <T, Container>(const tstd::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs);
friend constexpr bool operator>= <T, Container>(const tstd::queue<T, Container>& lhs, const tstd::queue<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:
queue() : queue(Container()) {} // 1
explicit queue(const Container& cont) // 2
: c(cont)
{
}
explicit queue(Container&& cont) // 3
: c(std::move(cont))
{
}
queue(const queue& other) // 4
: c(other.c)
{
}
queue(queue&& 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>>>
// queue(InputIterator first, InputIterator last) // 6
// : c(first, last)
// {
// }
template<typename Allocator,
typename = std::enable_if_t<std::uses_allocator_v<Container, Allocator>>>
explicit queue(const Allocator& alloc) // 7
: c(alloc)
{
}
template<typename Allocator,
typename = std::enable_if_t<std::uses_allocator_v<Container, Allocator>>>
queue(const Container& cont, const Allocator& alloc) // 8
: c(cont, alloc)
{
}
template<typename Allocator,
typename = std::enable_if_t<std::uses_allocator_v<Container, Allocator>>>
queue(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>>>
queue(const queue& other, const Allocator& alloc) // 10
: c(other.c, alloc)
{
}
template<typename Allocator,
typename = std::enable_if_t<std::uses_allocator_v<Container, Allocator>>>
queue(queue&& 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>>>
// queue(InputIterator first, InputIterator last, const Allocator& alloc) // 12
// : c(first, last, alloc)
// {
// }
~queue()
{
}
// assignment
queue& operator=(const queue& other)
{
c = other.c;
return *this;
}
queue& operator=(queue&& other)
{
c = std::move(other.c);
return *this;
}
// element access
reference front()
{
assert(!c.empty());
return c.front();
}
const_reference front() const
{
assert(!c.empty());
return c.front();
}
reference back()
{
assert(!c.empty());
return c.back();
}
const_reference back() 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_front();
}
void swap(queue& 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::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs)
{
return lhs.c == rhs.c;
}
template<typename T, typename Container>
constexpr bool operator!=(const tstd::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs)
{
return lhs.c != rhs.c;
}
template<typename T, typename Container>
constexpr bool operator<(const tstd::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs)
{
return lhs.c < rhs.c;
}
template<typename T, typename Container>
constexpr bool operator<=(const tstd::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs)
{
return lhs.c <= rhs.c;
}
template<typename T, typename Container>
constexpr bool operator>(const tstd::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs)
{
return lhs.c > rhs.c;
}
template<typename T, typename Container>
constexpr bool operator>=(const tstd::queue<T, Container>& lhs, const tstd::queue<T, Container>& rhs)
{
return lhs.c >= rhs.c;
}
// global swap for tstd::queue
template<typename T, typename Container>
constexpr void swap(tstd::queue<T, Container>& lhs, tstd::queue<T, Container>& rhs) noexcept(noexcept(lhs.swap(rhs)))
{
lhs.swap(rhs);
}
// priority_queue
template<typename T, typename Container = tstd::vector<T>, typename Compare = std::less<typename Container::value_type>>
class priority_queue
{
public:
using container_type = Container;
using value_compare = Compare;
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:
priority_queue() // 1
: priority_queue(Compare(), Container())
{
}
explicit priority_queue(const Compare& compare) // 2
: priority_queue(compare, Container())
{
}
priority_queue(const Compare& compare, const Container& cont) // 3
: c(cont)
, comp(compare)
{
tstd::make_heap(c.begin(), c.end(), comp);
}
priority_queue(const Compare& compare, Container&& cont) // 4
: c(std::move(cont))
, comp(compare)
{
tstd::make_heap(c.begin(), c.end(), comp);
}
priority_queue(const priority_queue& other) // 5
: c(other.c)
, comp(other.comp)
{
}
priority_queue(priority_queue&& other) // 6
: c(std::move(other.c))
, comp(other.comp)
{
}
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>>>
priority_queue(InputIterator first, InputIterator last, const Compare& compare = Compare()) // 7
: c(first, last)
, comp(compare)
{
tstd::make_heap(c.begin(), c.end(), comp);
}
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>>>
priority_queue(InputIterator first, InputIterator last, const Compare& compare, const Container& cont) // 8
: c(cont)
, comp(compare)
{
c.insert(c.end(), first, last);
tstd::make_heap(c.begin(), c.end(), comp);
}
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>>>
priority_queue(InputIterator first, InputIterator last, const Compare& compare, Container&& cont) // 9
: c(std::move(cont))
, comp(compare)
{
c.insert(c.end(), first, last);
tstd::make_heap(c.begin(), c.end(), comp);
}
template<typename Allocator,
typename = std::enable_if_t<std::uses_allocator_v<Container, Allocator>>>
explicit priority_queue(const Allocator& alloc) // 10
: c(alloc)
, comp()
{
}
template<typename Allocator,
typename = std::enable_if_t<std::uses_allocator_v<Container, Allocator>>>
priority_queue(const Compare& compare, const Allocator& alloc) // 11
: c(alloc)
, comp(compare)
{
}
template<typename Allocator,
typename = std::enable_if_t<std::uses_allocator_v<Container, Allocator>>>
priority_queue(const Compare& compare, const Container& cont, const Allocator& alloc) // 12
: c(cont, alloc)
, comp(compare)
{
tstd::make_heap(c.begin(), c.end(), comp);
}
template<typename Allocator,
typename = std::enable_if_t<std::uses_allocator_v<Container, Allocator>>>
priority_queue(const Compare& compare, Container&& cont, const Allocator& alloc) // 13
: c(std::move(cont), alloc)
, comp(compare)
{
tstd::make_heap(c.begin(), c.end(), comp);
}
template<typename Allocator,
typename = std::enable_if_t<std::uses_allocator_v<Container, Allocator>>>
priority_queue(const priority_queue& other, const Allocator& alloc) // 14
: c(other.c, alloc)
, comp(other.comp)
{
}
template<typename Allocator,
typename = std::enable_if_t<std::uses_allocator_v<Container, Allocator>>>
priority_queue(priority_queue&& other, const Allocator& alloc) // 15
: c(std::move(other.c), alloc)
, comp(other.comp)
{
}
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>>>
priority_queue(InputIterator first, InputIterator last, const Allocator& alloc) // 16
: c(first, last, alloc)
, comp()
{
tstd::make_heap(c.begin(), c.end(), comp);
}
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>>>
priority_queue(InputIterator first, InputIterator last, const Compare& compare, const Allocator& alloc) // 17
: c(first, last, alloc)
, comp(compare)
{
tstd::make_heap(c.begin(), c.end(), comp);
}
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>>>
priority_queue(InputIterator first, InputIterator last, const Compare& compare, const Container& cont, const Allocator& alloc) // 18
: c(cont, alloc)
, comp(compare)
{
c.insert(c.end(), first, last);
tstd::make_heap(c.begin(), c.end(), comp);
}
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>>>
priority_queue(InputIterator first, InputIterator last, const Compare& compare, Container&& cont, const Allocator& alloc) // 18
: c(std::move(cont))
, comp(compare)
{
c.insert(c.end(), first, last);
tstd::make_heap(c.begin(), c.end(), comp);
}
~priority_queue()
{
}
// assignment
priority_queue& operator=(const priority_queue& other)
{
c = other.c;
comp = other.comp;
return *this;
}
priority_queue& operator=(priority_queue&& other)
{
c = std::move(other.c);
comp = std::move(other.comp);
return *this;
}
// element access
reference top()
{
assert(!c.empty());
return c.front();
}
const_reference top() const
{
assert(!c.empty());
return c.front();
}
// 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);
tstd::push_heap(c.begin(), c.end(), comp);
}
void push(value_type&& value)
{
c.push_back(std::move(value));
tstd::push_heap(c.begin(), c.end(), comp);
}
template<typename... Args>
void emplace(Args&&... args)
{
c.emplace_back(std::forward<Args>(args)...);
tstd::push_heap(c.begin(), c.end(), comp);
}
void pop()
{
assert(!c.empty());
tstd::pop_heap(c.begin(), c.end(), comp);
c.pop_back();
}
void swap(priority_queue& other) noexcept(std::is_nothrow_swappable_v<Container> && std::is_nothrow_swappable_v<Compare>)
{
using tstd::swap;
swap(c, other.c);
swap(comp, other.comp);
}
protected:
Container c;
Compare comp;
};
// global swap for tstd::priority_queue
template<typename T, typename Container, typename Compare>
constexpr void swap(tstd::priority_queue<T, Container, Compare>& lhs, tstd::priority_queue<T, Container, Compare>& rhs) noexcept(noexcept(lhs.swap(rhs)))
{
lhs.swap(rhs);
}
} // namespace tstd
#endif // TQUEUE_HPP