stack容器的用法:入栈、出栈、访问栈顶元素,判断是否为空
#include#includeusing namespace std;int main(){stack s;//入栈s.push(1);s.push(2);s.push(3);s.push(4);s.push(9);//读取栈顶元素cout//返回堆栈元素数量cout//判断堆栈是否为空cout
·
#include <stack>
#include <iostream>
using namespace std;
int main()
{
stack<int> s;
//入栈
s.push(1);
s.push(2);
s.push(3);
s.push(4);
s.push(9);
//读取栈顶元素
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;
}
#include <iostream>
using namespace std;
int main()
{
stack<int> s;
//入栈
s.push(1);
s.push(2);
s.push(3);
s.push(4);
s.push(9);
//读取栈顶元素
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;
}
更多推荐
已为社区贡献4条内容
所有评论(0)