mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 14:18:47 +00:00
828. 模拟栈
https://www.acwing.com/problem/content/submission/code_detail/6873731/
This commit is contained in:
parent
b7eb21c0f5
commit
03630f4f07
22
AcWing/828/828.cpp
Normal file
22
AcWing/828/828.cpp
Normal file
@ -0,0 +1,22 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
int m;
|
||||
cin >> m;
|
||||
stack<int> q;
|
||||
while (m--) {
|
||||
string op;
|
||||
cin >> op;
|
||||
if (op == "push") {
|
||||
int x;
|
||||
cin >> x;
|
||||
q.push(x);
|
||||
}
|
||||
if (op == "pop") q.pop();
|
||||
if (op == "empty") cout << (q.empty() ? "YES" : "NO") << endl;
|
||||
if (op == "query") cout << q.top() << endl;
|
||||
}
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user