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

STL学习记录:栈与队列

时间:2020-02-15 11:51:25      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:数据   pre   栈与队列   改变   main   stack   push   clu   include   

首先是栈的基本操作,也就这些了

#include <bits/stdc++.h>
using namespace std;
int main ()
{
    stack<int> test;//声明方式:stack <数据类型> 名称
    test.push(2);    //向栈中压入2 
    test.top()=1;    //也可以直接改变栈顶的值
    test.pop();        //弹出栈顶部的值
    if (test.empty())//如果栈空,返回true
        cout<<"空栈";
    cout<<test.size();//返回栈中元素数目 
    return 0;
}

 

STL学习记录:栈与队列

标签:数据   pre   栈与队列   改变   main   stack   push   clu   include   

原文地址:https://www.cnblogs.com/Salty-Fish/p/12310903.html

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