题解 | #【模板】栈#

【模板】栈

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

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

class stack {
  private:
    int* data;
    int count;
  public:
    stack() {
        count = 0;
        data = new int[100000];
    }
    bool empty() {
        if (count == 0) {
            return true;
        }
        return false;
    }
    bool full() {
        if (count == 100000) {
            return true;
        }
        return false;
    }
    void push(int num) {
        if (full()) {
            cout << "error" << endl;
            return;
        }
        data[count] = num;
        count++;
    }
    void pop() {
        if (empty()) {
            cout << "error" << endl;
            return;
        }
        count--;
        cout << data[count] << endl;
    }
    void top() {
        if (empty()) {
            cout << "error" << endl;
            return;
        }
        cout << data[count - 1] <<endl;;
    }

};

int main() {
    stack s;
    string opt;
    int in;
    cin >> in;
    while (in--) {
        cin >> opt;
        if (opt == "push") {
            int num;
            cin >> num;
            s.push(num);
        } else if (opt == "pop") {
            s.pop();
        } else if (opt == "top") {
            s.top();
        }
    }
}

全部评论

相关推荐

ArisRobert:统一解释一下,第4点的意思是,公司按需通知员工,没被通知到的员工是没法去上班的,所以只要没被通知到,就自动离职。就是一种比较抽象的裁员。
点赞 评论 收藏
分享
10-30 22:18
已编辑
毛坦厂中学 C++
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务