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;
}

 

原文链接: https://www.cnblogs.com/rowsy/archive/2012/06/26/2838802.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

    STL容器之stack

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/53550

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月9日 上午4:53
下一篇 2023年2月9日 上午4:54

相关推荐