stack 的一些用法
Posted andromeda-galaxy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了stack 的一些用法相关的知识,希望对你有一定的参考价值。
#include<bits/stdc++.h> using namespace std; int32_t main() { stack<int> st; st.push(1); st.push(2); st.push(3); cout<<st.size()<<endl; while(!st.empty()) { cout<<st.top()<<endl; st.pop(); } }
以上是关于stack 的一些用法的主要内容,如果未能解决你的问题,请参考以下文章