题解 | #【模板】队列#

【模板】队列

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

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

int main() {
    int n;
    cin >> n;
    queue<int>que;
    for (int i = 0;i <= n;i++)
    {
        string data;
        getline(cin,data);
        auto it = data.find(' ');
        if (it != string::npos)
        {
            string op = data.substr(0,it);
            string num = data.substr(it + 1);
            if (op == "push")
            {
                que.push(stoi(num));
            }
        }
        else 
        {
            if (data == "pop")
            {
                if (que.empty())
                {
                    cout << "error" << endl;
                }
                else
                {
                    cout << que.front() << endl;
                    que.pop();
                }
            }
            else if (data == "front")
            {
                if (que.empty())
                {
                    cout << "error" << endl;
                }
                else 
                {
                    cout << que.front() << endl;
                }
            }
        }
    }

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

全部评论

相关推荐

邮小鼠:粤嵌的项目水的要死 来我们学校带过课程实习 项目名字是车机终端 实际上就是写了了个gui 还是老师把代码发给你你改改的那种
点赞 评论 收藏
分享
牛舌:如果我不想去,不管对方给了多少,我一般都会说你们给得太低了。这样他们就会给下一个offer的人更高的薪资了。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务