-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpriority_queue.hpp
113 lines (89 loc) · 2.41 KB
/
priority_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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#ifndef PRIORITY_QUEUE_HPP
# define PRIORITY_QUEUE_HPP
# include "vector.hpp"
namespace ft
{
template <class T, class Container = ft::vector<T>, class Compare = ft::less<typename Container::value_type> >
class priority_queue {
public:
//////////////////////////////
// Member types
//////////////////////////////
typedef T value_type;
typedef Container container_type;
typedef size_t size_type;
//////////////////////////////
// Member functions
//////////////////////////////
explicit priority_queue (const Compare & comp = Compare(), const Container& ctnr = Container())
{
this->comp = comp;
this->c = ctnr;
}
template <class InputIterator>
priority_queue (InputIterator first, InputIterator last, const Compare & comp = Compare(), const Container & ctnr = Container())
{
this->comp = comp;
this->c = ctnr;
this->c.assign(first, last);
}
size_type size (void) const
{
return (c.size());
}
bool empty (void) const
{
return (c.empty());
}
const value_type & top (void) const
{
return (c.front());
}
void push (const value_type & val)
{
c.push_back(val);
}
void pop (void)
{
c.erase(c.begin());
}
//////////////////////////////
// Member variables
//////////////////////////////
protected:
container_type c;
Compare comp;
//////////////////////////////
// Relational operators
//////////////////////////////
friend bool operator== (const priority_queue & lhs, const priority_queue & rhs)
{
return (lhs.c == rhs.c);
}
friend bool operator< (const priority_queue & lhs, const priority_queue & rhs)
{
return (lhs.c < rhs.c);
}
}; // Priority Queue
template <class T, class Container, class Compare>
bool operator!= (const priority_queue<T,Container,Compare> & lhs, const priority_queue<T,Container,Compare> & rhs)
{
return (!(lhs == rhs));
}
template <class T, class Container, class Compare>
bool operator<= (const priority_queue<T,Container,Compare> & lhs, const priority_queue<T,Container,Compare> & rhs)
{
return (!(rhs < lhs));
}
template <class T, class Container, class Compare>
bool operator> (const priority_queue<T,Container,Compare> & lhs, const priority_queue<T,Container,Compare> & rhs)
{
return (rhs < lhs);
}
template <class T, class Container, class Compare>
bool operator>= (const priority_queue<T,Container,Compare> & lhs, const priority_queue<T,Container,Compare> & rhs)
{
return (!(lhs < rhs));
}
} // Namespace ft
#endif