-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack.hpp
More file actions
65 lines (51 loc) · 3.05 KB
/
stack.hpp
File metadata and controls
65 lines (51 loc) · 3.05 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* stack.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mannouao <mannouao@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/17 15:14:25 by mannouao #+# #+# */
/* Updated: 2022/07/29 17:21:52 by mannouao ### ########.fr */
/* */
/* ************************************************************************** */
# ifndef STACK_HPP
# define STACK_HPP
# include "vector.hpp"
namespace ft
{
template<typename _Tp, typename _Container = ft::vector<_Tp> >
class stack
{
public:
typedef _Container container_type;
typedef typename container_type::value_type value_type;
typedef typename container_type::reference reference;
typedef typename container_type::const_reference const_reference;
typedef typename container_type::size_type size_type;
protected:
container_type c;
public:
explicit stack(const container_type& ctnr = container_type()) : c(ctnr) {}
stack(const stack& __q) : c(__q.c) {}
~stack() {}
stack& operator = (const stack& __q) { c = __q.c; return(*this); }
bool empty() const { return (c.empty()); }
size_type size() const { return (c.size()); }
reference top() { return (c.back()); }
const_reference top() const { return (c.back()); }
void push(const value_type& val) { c.push_back(val); }
void pop() { c.pop_back(); }
void swap(stack& __s) { ft::swap(c, __s.c); }
template<typename T1, typename _C1> friend bool operator == (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y);
template<typename T1, typename _C1> friend bool operator < (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y);
};
template<typename T1, typename _C1> bool operator == (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y) { return (__x.c == __y.c); }
template<typename T1, typename _C1> bool operator < (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y) { return (__x.c < __y.c); }
template<typename T1, typename _C1> bool operator != (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y) { return !(__x == __y); }
template<typename T1, typename _C1> bool operator > (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y) { return (__y < __x); }
template<typename T1, typename _C1> bool operator >= (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y) { return !(__x < __y); }
template<typename T1, typename _C1> bool operator <= (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y) { return !(__y < __x); }
template<typename T1, typename _C1> void swap(stack<T1, _C1>& __x, stack<T1, _C1>& __y) { __x.swap(__y); }
} // ft
# endif