-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path10845.cpp
More file actions
45 lines (40 loc) · 697 Bytes
/
10845.cpp
File metadata and controls
45 lines (40 loc) · 697 Bytes
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
#include "stdafx.h"
#include <queue>
#include <iostream>
#include <string>
using namespace std;
int main() {
queue<int> q;
int n, m;
string s;
cin >> n;
while (n--) {
cin >> s;
if (s == "push") {
cin >> m;
q.push(m);
}
else if (s == "pop") {
if (q.empty()) cout << "-1" << endl;
else {
cout << q.front() << endl;
q.pop();
}
}
else if (s == "size") {
cout << q.size() << endl;
}
else if (s == "empty") {
cout << q.empty() << endl;
}
else if (s == "front") {
if (q.empty()) cout << "-1" << endl;
else cout << q.front() << endl;
}
else {
if (q.empty()) cout << "-1" << endl;
else cout << q.back() << endl;
}
}
return 0;
}