题面:实现一个栈,栈初始为空,支持四种操作:
push x
– 向栈顶插入一个数 \(x\);pop
– 从栈顶弹出一个数;empty
– 判断栈是否为空;query
– 查询栈顶元素。现在要对栈进行 \(M\) 个操作,其中的每个操作 \(3\) 和操作 \(4\) 都要输出相应的结果。
原题链接:828. 模拟栈 - AcWing
//利用单栈顶指针top即可
#include<bits/stdc++.h>
using namespace std;
const int N = 100005;
int st[N], top = -1;
void push(int x) {
st[++top] = x;
}
void pop() {
top--;
}
bool empty() {
return top == -1;
}
int query() {
return st[top];
}
int main()
{
int m;
cin >> m;
while (m--) {
int x;
string op;
cin >> op;
if (op == "push") {
cin >> x;
push(x);
}
else if (op == "pop")
pop();
else if (op == "query")
cout << query() << endl;
else
empty() ? cout << "YES\n" : cout << "NO\n";
}
}
标签:int,top,pop,828,push,query,AcWing,模拟,op
From: https://www.cnblogs.com/haruhomu/p/17874534.html