STL--stack/queue

Stack:栈
概念:一种先进后出的容器
头文件为:#include<stack>
定义:</stack>

stack <int> st;
stack <string> ss;

成员函数与操作方法

empty()// 堆栈为空则返回真
pop() //移除栈顶元素
push() //在栈顶增加元素
size() //返回栈中元素数目
top() //返回栈顶元素

代码示例:

#include<bits/stdc++.h>
using namespace std;
int main()
{
    stack<int>st;
    int m;
    int temp;
    cin>>m;
    for(int i=0;i<m;i++)
    {
        cin>>temp;
        st.push(temp);
        cout<<st.size()<<" "<<st.top()<<endl;
    }
    st.pop();
    cout<<st.top()<<endl;
    if(st.empty()!=true)
    {
        cout<<"yes"<<endl;
    }
    return 0;
}

结果如图所示:
图片说明

queue:队列
概念:具有先进先出特征的容器
头文件:#include<queue>
定义:</queue>

queue<int>q;
queue<string>q1;

成员函数与操作方法

q.push(x);  //  入队列
q.pop();    //  出队列
q.front();  //  访问队首元素
q.back();   //  访问队尾元素
q.empty();  //  判断队列是否为空
q.size();   //  访问队列中的元素个数

代码示例:

#include<bits/stdc++.h>
using namespace std;
int main()
{
    queue<int> q;
    int m;
    int temp;
    cin>>m;
    for(int i=0;i<m;i++)
    {
        cin>>temp;
        q.push(temp);
        cout<<q.size()<<" "<<q.back()<<endl;
    }
    q.pop();
    cout<<q.front()<<endl;
    if(q.empty()!=true)
    {
        cout<<"yes"<<endl;
    }
    return 0;
}

结果如图所示:
图片说明

参考引用:stack/queue

全部评论

相关推荐

11-27 12:43
已编辑
门头沟学院 C++
点赞 评论 收藏
分享
喜欢吃蛋糕仰泳鲈鱼是我的神:字节可以找个hr 给你挂了,再放池子捞
点赞 评论 收藏
分享
听说改名字就能收到offer哈:Radis写错了兄弟
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务