stl 中的栈的学习

TL 中栈的使用方法(stack)

基本操作:

push(x) 将x加入栈中,即入栈操作

pop() 出栈操作(删除栈顶),只是出栈,没有返回值

top() 返回第一个元素(栈顶元素)

size() 返回栈中的元素个数

empty() 当栈为空时,返回 true

使用方法和队列基本一样。

头文件

#include

定义方法:

stacks1;//入栈元素为 int 型
stacks2;// 入队元素为string型
stacks3;//入队元素为自定义型

#include
#include
using namespace std;
int main( )
{
 int i,j;
 stackq;
 stackp;
 for(i=0;i<5;i++)
 q.push(i); 
 p.push("china");
 cout<

转载于:https://www.cnblogs.com/tangcong/archive/2011/05/07/2039893.html

你可能感兴趣的:(stl 中的栈的学习)