概念:stack是一种先进后出(First In Last Out,FILO)的数据结构,它只有一个出口。
栈中只有顶端的元素才可以被外界使用,因此栈不允许有遍历行为
栈中进入数据称为--------入栈:push
栈中弹出数据称为-------出栈:pop
生活中的小例子:
**功能描述:**栈容器常用的对外接口
构造函数:
赋值存取:
大小操作:
示例代码:
#include
using namespace std;
#include
//栈stack容器
void test11()
{
//特点:符合先进后出数据结构
stack<int>s;
//入栈
s.push(10);
s.push(20);
s.push(30);
s.push(40);
s.push(50);
cout << "栈的大小为:" << s.size() << endl;
//只要栈不为空,查看栈顶,并且执行出栈操作
while (!s.empty())
{
//查看栈顶元素
cout << "栈顶元素为:" << s.top() << endl;
//出栈
//cout << "栈顶元素为:" << s.pop() << endl;
s.pop();
}
cout << "栈的大小为:" << s.size() << endl;
if (s.empty())
{
cout << "栈为空" << endl;
}
else
{
cout << "栈不为空" << endl;
}
}
int main()
{
test11();
system("pause");
return 0;
}
运行结果:
总结:
如果对你有帮助的话,请不要忘了给我一点点点…支持 ( ^ o ^)/~