-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstack.hpp
62 lines (46 loc) · 1.67 KB
/
stack.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
#ifndef FT_CONTAINERS_STACK_HPP
#define FT_CONTAINERS_STACK_HPP
#include "deque.hpp"
namespace ft {
template <class T, class Container = deque<T> >
class stack {
protected:
Container c;
public:
typedef typename Container::value_type value_type;
typedef Container container_type;
typedef typename Container::size_type size_type;
explicit stack(const container_type& cont = container_type()) : c(cont) {}
bool empty() const
{ return c.empty(); }
size_type size() const
{ return c.size(); }
value_type& top()
{ return c.back(); }
const value_type& top() const
{ return c.back(); }
void push(const value_type& val)
{ c.push_back(val); }
void pop()
{ c.pop_back(); }
};
template <class T, class Container>
bool operator==(const stack<T, Container>& a, const stack<T, Container>& b)
{ return a.c == b.c; }
template <class T, class Container>
bool operator<(const stack<T, Container>& a, const stack<T, Container>& b)
{ return a.c < b.c; }
template <class T, class Container>
bool operator!=(const stack<T, Container>& a, const stack<T, Container>& b)
{ return !(a == b); }
template <class T, class Container>
bool operator>(const stack<T, Container>& a, const stack<T, Container>& b)
{ return b < a; }
template <class T, class Container>
bool operator<=(const stack<T, Container>& a, const stack<T, Container>& b)
{ return !(b < a); }
template <class T, class Container>
bool operator>=(const stack<T, Container>& a, const stack<T, Container>& b)
{ return !(a < b); }
}
#endif