题解 | #堆栈的使用#

堆栈的使用

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

#include <iostream>
#include <cstdio>
#include <string>
#include <stack>
using namespace std;

int main() {
    int n,temp;
    stack<int> st;
    string str;
    while (scanf("%d",&n) != EOF) 
    { // 注意 while 处理多个 case
        while(n > 0)
        {
         cin >> str;  //用于赋值字符串
         if(str == "O")
         {
          if(!st.empty()) //注意,栈空下POP会出现段错误
          {
           st.pop();  
          }
         }

         if(str == "P")
         {
            scanf("%d",&temp);
            st.push(temp);
         }

         if(str == "A")
         {
            if (st.empty()) 
            {
             printf("E\n");
            // printf("\n");
            }else 
            {
            printf("%d\n",st.top());
           // printf("\n");
            }

         }

          n--;

        }
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

11-01 08:48
门头沟学院 C++
伤心的候选人在吵架:佬你不要的,能不能拿户口本证明过户给我。。球球了
点赞 评论 收藏
分享
11-08 17:36
诺瓦科技_HR
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务