STL容器之stack

先说明一个概念,适配器(adapter),适配器是标准库中的通用概念,包括容器适配器、迭代器适配器、函数适配器。本质上,适配器是使一事物的行为类似于另一事物的行为的一种机制。

容器适配器让一种已存在的容器类型以一种不同的抽象类型的工作方式实现。

STL提供了三种顺序容器适配器,queue、priority_queue、stack。
每一种适配器都定义了两个构造函数,如下:
A a;//创建空适配器a
A a(c);//用一个容器c初始化适配器a

默认的stack和queue都基于deque实现,priority_queue基于vector实现。
创建适配器时通过将一个顺序容器指定为适配器的第二个类型实参,可覆盖其关联的基础容器类型,例如:
stack< string, vector<string> > str_stk;
stack可以建立在vector,list或者deque上。
queue要求基础容器提供push_front操作,所以不能建立在vector上。
priority_queue要求提供随机访问,所以不能建立在list之上。

书归正传,先说说stack提供的操作,如下:
empty() 堆栈为空则返回真
pop() 移除栈顶元素,只有pop删除元素
push() 在栈顶增加元素
size() 返回栈中元素数目
top() 返回栈顶元素

下面给出stack的操作使用范例:

#include <iostream>
#include <vector>
#include <stack>
using namespace std;

int main()
{
	// 下面程序摘自《c++ primer》中文第四版301页,本例短小精辟,用到了所有操作,所以就不自己写了

	// number of elements we'll put in our stack
	const stack<int>::size_type stk_size = 10;
	stack<int> intStack;

	// fill up the stack
	int ix = 0;
	while(intStack.size() != stk_size)
		// use postfix increment;want to push old value onto intStack
		intStack.push(ix++);// intStack holds 0...9 inclusive

	int err_cnt = 0;

	// look at the top element of the stack
	while(intStack.empty == false){
		int value = intStack.top();
		// read the top element of stack
		if(value != --ix){
			cerr << "oops! expected " << ix << " received " << value << endl;
			++err_cnt;
		}
		intStack.pop();// pop the top element, and repeat
	}

	cout << "Our program ran with " << err_cnt << " errors" << endl;

	return 0;
}


 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值