stack堆栈容器
#include <iostream>#include <stack>using namespace std;//后进先出线性表int main(){//定义栈stack<int> s;//入栈s.push(1);s.push(3);s.push(5);//读取栈顶元素cout << s.top() &l...
·
#include <iostream>
#include <stack>
using namespace std;
//后进先出线性表
int main()
{
//定义栈
stack<int> s;
//入栈
s.push(1);
s.push(3);
s.push(5);
//读取栈顶元素
cout << s.top() << endl;
//返回堆栈元素数量
cout << s.size() << endl;
//判断堆栈是否为空
cout << s.empty() << endl;
//所有元素出栈(删除所有元素)
while(s.empty()!=true)
{
cout << s.top() << ' ';//读取栈顶元素
s.pop();//出栈,即删除栈顶元素
}
cout << endl;
return 0;
}
更多推荐
已为社区贡献1条内容
所有评论(0)