题解 | #Zero-complexity#

Zero-complexity Transposition

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

#include<iostream>

const int MAX_SIZE = 10000;

class Stack
{
    private:
    long long int data[MAX_SIZE];
    int top=-1;

    public:

    bool IsEmpty()
    {
        return top==-1;
    }
    void push(long long int value)
    {
        data[++top] = value;
    }

    long long int Pop()
    {
        return data[top--];
    }
};

int main()
{
    int n;
    std::cin >> n;
    Stack s;
    long long int value;
    for(int i=0;i<n;i++)
    {
        std::cin >> value;
        s.push(value);
    }
    while(!s.IsEmpty())
    {
        std::cout << s.Pop() << " ";
    }
}

全部评论

相关推荐

10-13 17:47
门头沟学院 Java
wulala.god:图一那个善我面过,老板网上找的题库面的
点赞 评论 收藏
分享
废铁汽车人:秋招真是牛鬼蛇神齐聚一堂
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务