stl stack用法

Posted mch5201314

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了stl stack用法相关的知识,希望对你有一定的参考价值。

栈后进先出

#include<iostream>
#include<algorithm>
#include<cstdio>
#include<stack>
#include<string.h>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<queue>
using namespace std;
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    stack<int> st;
    int n,x;
    cin>>n;
    for(int i=0;i<n;i++)
    {
        cin>>x;
        st.push(x);
    }
    cout<<st.size()<<endl;
    cout<<st.empty()<<endl;
    while(!st.empty()){
        cout<<st.top()<<endl;
        st.pop();
    }
    return 0;
}

以上是关于stl stack用法的主要内容,如果未能解决你的问题,请参考以下文章

[C++STL]stack容器用法介绍

stl stack用法

STL容器用法速查表:list,vector,stack,queue,deque,priority_queue,set,map

各种STL的基本用法

STL源代码剖析 容器 stl_stack.h

STL之stack