cqueue结构pop_c++ stl栈容器stack的pop(),push()等用法介绍及头文件

C++ Stack(堆栈) 是一个容器类的改编,为程序员提供了堆栈的全部功能,——也就是说实现了一个先进后出(FILO)的数据结构。

c++ stl栈stack的头文件为:

#include

c++ stl栈stack的成员函数介绍

操作比较和分配堆栈

empty()堆栈为空则返回真

pop()移除栈顶元素

push()在栈顶增加元素

size()返回栈中元素数目

top()返回栈顶元素

c++ stl栈stack用法代码举例1#include "stdafx.h"

#include 

#include 

#include 

#include 

using namespace std;

int _tmain(int argc, _TCHAR* argv[])

{

deque mydeque(2,100);

vector myvector(2,200);

stack first;

stack second(mydeque);

stack > third;

stack > fourth(myvector);

cout <

cout <

cout <

cout <

return 0;

}

c++ stl栈stack用法代码举例2// stack::empty

#include 

#include 

using namespace std;

int main ()

{

stack mystack;

int sum (0);

for (int i=1;i<=10;i++) mystack.push(i);

while (!mystack.empty())

{

sum += mystack.top();

mystack.pop();

}

cout <

return 0;

}

c++ stl栈stack用法代码举例3// stack::push/pop

#include 

#include 

using namespace std;

int main ()

{

stack mystack;

for (int i=0; i<5; ++i) mystack.push(i);

cout <

while (!mystack.empty())

{

cout <

mystack.pop();

}

cout <

return 0;

}

c++ stl栈stack用法代码举例4#include 

#include 

using namespace std;

int main ()

{

stack mystack;

for (int i=0; i<5; ++i) mystack.push(i);

cout <

while (!mystack.empty())

{

cout <

mystack.pop();

}

cout <

return 0;

}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值