当前位置:  编程语言>c/c++

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

 
    发布时间:2014-10-8  


    本文导语: c++ stl栈stack介绍C++ Stack(堆栈) 是一个容器类的改编,为程序员提供了堆栈的全部功能,——也就是说实现了一个先进后出(FILO)的数据结构。c++ stl栈stack的头文件为:#include <stack>c++ stl栈stack的成员函数介绍操作 ...

c++ stlstack介绍

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

c++ stl栈stack的头文件

#include <stack> 

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

操作 比较和分配堆栈

empty() 堆栈为空则返回真

pop() 移除栈顶元素

push() 在栈顶增加元素

size() 返回栈中元素数目

top() 返回栈顶元素

c++ stl栈stack用法代码举例1

#include "stdafx.h"  
#include <stack>  
#include <vector>  
#include <deque>  
#include <iostream>  
  
using namespace std;  
  
int _tmain(int argc, _TCHAR* argv[])  
{  
    deque<int> mydeque(2,100);  
    vector<int> myvector(2,200);  
  
    stack<int> first;  
    stack<int> second(mydeque);  
  
    stack<int,vector<int> > third;  
    stack<int,vector<int> > fourth(myvector);  
  
    cout << "size of first: " << (int) first.size() << endl;  
    cout << "size of second: " << (int) second.size() << endl;  
    cout << "size of third: " << (int) third.size() << endl;  
    cout << "size of fourth: " << (int) fourth.size() << endl;  
  
  
    return 0;  
}

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

// stack::empty  
#include <iostream>  
#include <stack>  
using namespace std;  
  
int main ()  
{  
  stack<int> mystack;  
  int sum (0);  
  
  for (int i=1;i<=10;i++) mystack.push(i);  
  
  while (!mystack.empty())  
  {  
     sum += mystack.top();  
     mystack.pop();  
  }  
  
  cout << "total: " << sum << endl;  
    
  return 0;  
}

 c++ stl栈stack用法代码举例3

// stack::push/pop  
#include <iostream>  
#include <stack>  
using namespace std;  
  
int main ()  
{  
  stack<int> mystack;  
  
  for (int i=0; i<5; ++i) mystack.push(i);  
  
  cout << "Popping out elements...";  
  while (!mystack.empty())  
  {  
     cout << " " << mystack.top();  
     mystack.pop();  
  }  
  cout << endl;  
  
  return 0;  
}

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

#include <iostream>  
#include <stack>  
using namespace std;  
  
int main ()  
{  
  stack<int> mystack;  
  
  for (int i=0; i<5; ++i) mystack.push(i);  
  
  cout << "Popping out elements...";  
  while (!mystack.empty())  
  {  
     cout << " " << mystack.top();  
     mystack.pop();  
  }  
  cout << endl;  
  
  return 0;  
}


  • 本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载,整理或搜集自网络.欢迎任何形式的转载,转载请注明出处.
    转载请注明:文章转载自:[169IT-IT技术资讯]
    本文标题:c++ stl栈容器stack的pop(),push()等用法介绍及头文件
相关文章推荐:


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3