-
Notifications
You must be signed in to change notification settings - Fork 0
/
stack.hpp
36 lines (30 loc) · 1.42 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
#ifndef STACK_HPP
# define STACK_HPP
#include "vector.hpp"
namespace ft {
template < class T, class Container = ft::vector<T> >
class stack {
public:
typedef T value_type;
typedef Container container_type;
typedef size_t size_type;
explicit stack( const Container& cont = Container() ) : c(cont) {}
~stack(){};
stack& operator=( const stack& other ) { this->c = other.c; }
bool empty(void) const { return c.empty(); }
size_type size(void) const { return c.size(); }
value_type& top(void) { return c.back(); }
const value_type& top(void) const { return c.back(); }
void push (const value_type& val) { c.push_back(val); }
void pop(void) { c.pop_back(); }
friend bool operator== (const stack<T, Container>& lhs, const stack<T, Container>& rhs) { return lhs.c == rhs.c; }
friend bool operator!= (const stack<T, Container>& lhs, const stack<T, Container>& rhs) { return lhs.c != rhs.c; }
friend bool operator< (const stack<T, Container>& lhs, const stack<T, Container>& rhs) { return lhs.c < rhs.c; }
friend bool operator<= (const stack<T, Container>& lhs, const stack<T, Container>& rhs) { return lhs.c <= rhs.c; }
friend bool operator> (const stack<T, Container>& lhs, const stack<T, Container>& rhs) { return lhs.c > rhs.c; }
friend bool operator>= (const stack<T, Container>& lhs, const stack<T, Container>& rhs) { return lhs.c >= rhs.c; }
protected:
container_type c;
};
}//end ft
#endif