题解 | #堆栈的使用# c++ stack

堆栈的使用

https://www.nowcoder.com/practice/e91982a145944ceab6bb9a4a508e0e26

#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;
    char c;
    int x;
    stack<int> s;
    while(cin>>n){
        for(int i=0;i<n;i++){
            cin>>c;
            if(c=='A'){
                if(!s.empty()) cout<<s.top()<<endl;
                else cout<<'E'<<endl;
            }else if(c=='P'){
                cin>>x;
                s.push(x);
            }else{
                if(!s.empty()){
                    s.pop();
                }
            }
        }
    }
}

全部评论

相关推荐

死在JAVA的王小美:哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈,我也是,让我免了一轮,但是硬气拒绝了
点赞 评论 收藏
分享
双非坐过牢:非佬,可以啊10.28笔试,11.06评估11.11,11.12两面,11.19oc➕offer
点赞 评论 收藏
分享
oppo 应用软开 22*15+0.5*12
拿到了ssp完美:真的坎坷,但是你至少拿到这么多offer了!
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务