码迷,mamicode.com
首页 > 其他好文 > 详细

堆栈的头函数使用

时间:2018-11-07 13:14:40      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:素数   bool   判断   ret   pop   code   top   tac   const   

1.若要使用 栈,需要有头函数#include<stack>

 

2.STL容器stack成员函数

 

        bool empty()  判断是否为空

 

        void pop()  删除栈顶元素

 

        void push(const TYPE &val)  进栈

 

        TYPE &top()  查看栈顶元素

 

        size_type size()  返回栈中

#include <iostream>
#include <stack>
using namespace std;
 
int main() {
    stack<int> s;
    s.push(1);
    s.push(2);
    s.push(3);
    cout<<s.top()<<endl;
    cout<<s.size()<<endl;
    s.pop();
    cout<<s.size()<<endl;
    if(s.empty())
        cout<<"Empty"<<endl;
    else
        cout<<"Not Empty"<<endl;
    return 0;
}

 

元素数目

 

3.实例

 

堆栈的头函数使用

标签:素数   bool   判断   ret   pop   code   top   tac   const   

原文地址:https://www.cnblogs.com/Stephen-Jixing/p/9921868.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!