#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() << " ";
s.pop();
}
cout << endl;
cout << s.size() << endl;
}
int main ()
{
test01();
return 0;
}
24、stack容器-常用接口
最新推荐文章于 2024-11-08 15:01:00 发布
本文展示了一个C++程序,通过`test01`函数使用`stack`容器进行整数的入栈(push)和出栈(pop),并在`main`函数中调用它并显示栈的大小。
摘要由CSDN通过智能技术生成