#include<iostream>
#include<cstdio>
#include<stack>
#include<vector>
using namespace std;
void display_stack(stack<int>&s)
{
stack<int> b=s;
while(!b.empty())
{
cout<<b.top()<<" ";
b.pop();
}
cout<<endl;
}
int main()
{
cout<<"*******************************"<<endl;
stack<int> s;
//用vector初始化stack
vector<int> v(3,100);
stack<int,vector<int>> s2(v);
//检测栈大小
cout<<"栈1的大小为:"<<s.size()<<endl;
cout<<"栈2的大小为:"<<s2.size()<<endl;
cout<<"*******************************"<<endl;
//栈判空
if(!s2.empty())
{
cout<<"栈2的栈顶元素是:"<<s2.top()<<endl;
s2.top()+=10;//直接修改即可
cout<<"修改后的栈2的栈顶元素是:"<<s2.top()<<endl;
}
cout<<"*******************************"<<endl;
s.push(10);
s.push(20);
s.push(30);
//stack没有提供底层的迭代器,我们只能采用复制的方法进行输出
cout<<"当前的栈内元素:";
display_stack(s);
cout<<"经过入栈操作之后的栈大小为:"<<s.size()<<endl;
cout<<"经过入栈操作之后的栈顶元素为:"<<s.top()<<endl;
cout<<"*******************************"<<endl;
s.pop();
cout<<"经过一次pop操作之后的当前栈内元素:";
display_stack(s);
cout<<"经过一次pop操作之后的栈大小为:"<<s.size()<<endl;
cout<<"经过一次pop操作之后的栈顶元素为:"<<s.top()<<endl;
cout<<"*******************************"<<endl;
cout<<"所有的操作全部结束"<<endl;
cout<<"*******************************"<<endl;
return 0;
}
C++ STL Stack的基本操作
最新推荐文章于 2024-11-14 19:11:37 发布