-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeque2.cpp
71 lines (62 loc) · 1.14 KB
/
deque2.cpp
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
#include<iostream>
#include<deque>
#include<string>
using namespace std;
deque<int> dq;
int main()
{
int n,k;
string str;
cin >> n;
for (int i = 0; i < n ; i++)
{
cin >> str;
if (str == "push_front")
{
cin >> k;
dq.push_front(k);
}
else if (str == "push_back")
{
cin >> k;
dq.push_back(k);
}
else if (str == "pop_front")
{
if (dq.empty()) cout << "-1" << endl;
else
{
cout << dq.front() << endl;
dq.pop_front();
}
}
else if (str == "pop_back")
{
if (dq.empty()) cout << "-1" << endl;
else
{
cout << dq.back() << endl;
dq.pop_back();
}
}
else if (str == "size")
{
cout << dq.size() << endl;
}
else if (str == "empty")
{
if (dq.empty()) cout << "1" << endl;
else cout << "0" << endl;
}
else if (str == "front")
{
if(dq.empty()) cout << "-1" << endl;
else cout << dq.front() << endl;
}
else if (str == "back")
{
if(dq.empty()) cout << "-1" << endl;
else cout << dq.back() << endl;
}
}
}