-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueue.hpp
97 lines (74 loc) · 2.1 KB
/
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
#pragma once
#include "list.hpp"
namespace ft {
// https://isocpp.org/wiki/faq/templates#template-friends
template <class T, class Container>
class queue;
template <class T, class Container>
bool operator==(const queue<T, Container> &x, const queue<T, Container> &y);
template <class T, class Container>
bool operator<(const queue<T, Container> &x, const queue<T, Container> &y);
template <class T, class Container = ft::list<T> >
class queue {
friend bool operator==
<> (const queue<T, Container> &x, const queue<T, Container> &y);
friend bool operator< <> (
const queue<T, Container> &x, const queue<T, Container> &y);
public:
typedef typename Container::value_type value_type;
typedef typename Container::size_type size_type;
typedef Container container_type;
protected:
Container c;
public:
explicit queue(const Container &container = Container()) : c(container) {}
bool empty() const {
return c.empty();
}
size_type size() const {
return c.size();
}
value_type &front() {
return c.front();
}
const value_type &front() const {
return c.front();
}
value_type &back() {
return c.back();
}
const value_type &back() const {
return c.back();
}
void push(const value_type &value) {
c.push_back(value);
}
void pop() {
c.pop_front();
}
};
template <class T, class Container>
bool operator==(const queue<T, Container> &x, const queue<T, Container> &y) {
return x.c == y.c;
}
template <class T, class Container>
bool operator!=(const queue<T, Container> &x, const queue<T, Container> &y) {
return !(x == y);
}
template <class T, class Container>
bool operator<(const queue<T, Container> &x, const queue<T, Container> &y) {
return x.c < y.c;
}
template <class T, class Container>
bool operator>(const queue<T, Container> &x, const queue<T, Container> &y) {
return y < x;
}
template <class T, class Container>
bool operator<=(const queue<T, Container> &x, const queue<T, Container> &y) {
return !(y < x);
}
template <class T, class Container>
bool operator>=(const queue<T, Container> &x, const queue<T, Container> &y) {
return !(x < y);
}
} // namespace ft