C++ 提高教程 STL stack容器
Posted 行码阁119
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 提高教程 STL stack容器相关的知识,希望对你有一定的参考价值。
# include<iostream>
# include<stack>
using namespace std;
void test01()
{
stack<int>s;
s.push(10);
s.push(20);
s.push(30);
s.push(40);
while ((!s.empty()))
{
cout << "栈顶元素为:" << s.top() << endl;
s.pop();
}
cout << "stack的大小" <<s.size()<< endl;
}
int main()
{
test01();
system("pause");
return 0;
}
以上是关于C++ 提高教程 STL stack容器的主要内容,如果未能解决你的问题,请参考以下文章
小白学习C++ 教程二十二C++ 中的STL容器stackqueue和map