stack基本操作

Stack简介 stack是堆栈容器,是一种“先进后出”的容器。 stack是简单地装饰deque容器而成为另外的一种容器。
#include stack对象的默认构造 stack采用模板类实现, stack对象的默认构造形式: stack
stkT; stack stkInt; //一个存放int的stack容器。 stack
stkFloat; //一个存放float的stack容器。 stack stkString;
//一个存放string的stack容器。 … //尖括号内还可以设置指针类型或自定义类型。
stack的push()与pop()方法 stack.push(elem); //往栈头添加元素 stack.pop();
//从栈头移除第一个元素

stack stkInt; stkInt.push(1);stkInt.push(3);stkInt.pop();
stkInt.push(5);stkInt.push(7); stkInt.push(9);stkInt.pop();
stkInt.pop(); 此时stkInt存放的元素是1,5 stack对象的拷贝构造与赋值 stack(const stack
&stk); //拷贝构造函数 stack& operator=(const stack &stk); //重载等号操作符

  stack<int> stkIntA; 		stkIntA.push(1); 		stkIntA.push(3);
  stkIntA.push(5); 		stkIntA.push(7); 		stkIntA.push(9);

  stack<int> stkIntB(stkIntA);		//拷贝构造 		stack<int> stkIntC; 		stkIntC

= stkIntA; //赋值 stack的数据存取 stack.top(); //返回最后一个压入栈元素 stack stkIntA; stkIntA.push(1); stkIntA.push(3);
stkIntA.push(5); stkIntA.push(7); stkIntA.push(9);

  int iTop = stkIntA.top();		//9 		stkIntA.top() = 19;			//19 stack的大小

stack.empty(); //判断堆栈是否为空 stack.size(); //返回堆栈的大小

  stack<int> stkIntA; 		stkIntA.push(1); 		stkIntA.push(3);
  stkIntA.push(5); 		stkIntA.push(7); 		stkIntA.push(9);

  if (!stkIntA.empty()) 		{ 			int iSize = stkIntA.size();		//5 		}
#include "iostream"
#include "vector"
#include "deque"
#include "algorithm"
#include "stack"
using namespace std;

///栈模型 栈的算法和数据类型的分离
void main51()
{
	stack<int> s1;

	/// 入栈
	for (int i = 0; i < 10; i++)
	{
		s1.push(i+1);
	}

	cout << "栈的大小" << s1.size() << endl;
	/// 出栈
	while (!s1.empty()) /// 不为空
	{
		int tmp=s1.top(); /// 获取栈顶元素
		cout << tmp << " ";
		s1.pop();  弹出栈顶元素
	}
}
///stack 栈模型


class Teacher11
{
	public:
	int age;
	char name[32];

	public:
	void printF()
	{
		cout << "age: " << age << endl;
	}
};

void main52()
{
	Teacher11 t1, t2, t3;
	t1.age = 31;
	t2.age = 32;
	t3.age = 33;

	stack<Teacher11> s;
	s.push(t1);
	s.push(t2);
	s.push(t3);

	while (!s.empty())
	{
		Teacher11 tmp = s.top();
		tmp.printF();
		s.pop();
	}
}

void main53()
{
	Teacher11 t1, t2, t3;
	t1.age = 31;
	t2.age = 32;
	t3.age = 33;

	stack<Teacher11 *> s;
	s.push(&t1);
	s.push(&t2);
	s.push(&t3);

	while (!s.empty())
	{
		Teacher11 *tmp = s.top();
		tmp->printF();
		s.pop();
	}
}
void main51111()
{
	


	main53();
	system("pause");
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值