题解 | #【模板】栈#

【模板】栈

https://www.nowcoder.com/practice/104ce248c2f04cfb986b92d0548cccbf

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


class mystack {
  private:
    int s[100000];
    int index = 0;
  public:
    void push(int x) {
        s[index] = x;
        index++;
    }
    void pop() {
        if(index>0){
            index--;
            cout << s[index] << endl;
        }else{
            cout<<"error"<<endl;
        }

    }
    void top(){
        if(index>0){
            cout<<s[index-1]<<endl;
        }else{
            cout<<"error"<<endl;
        }
        
    }
};



    int main() {
        mystack ms;
        int input_num;
        cin>>input_num;
        while(input_num){
            string order;
            cin>>order;
            if(order=="push"){
                int inp;
                cin>>inp;
                ms.push(inp);
            }
            else if(order=="pop"){
                ms.pop();
            }
            else if(order=="top"){
                ms.top();
            }
            input_num--;
        }
        return 0;
    }
// 64 位输出请用 printf("%lld")

很基本的操作

全部评论

相关推荐

2024-12-01 23:36
信阳学院 Java
在拧螺丝的西红柿很热情:看发布昨天发的,昨天周天,前天周六,没谁回复你的,而且实习一般年前很少收人,一般年后或者暑假收
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务