首页 > 其他 > 详细

STL-stack栈

时间:2020-01-28 22:13:29      阅读:66      评论:0      收藏:0      [点我收藏+]
 1 #include <iostream>
 2 #include <stack>
 3 
 4 using namespace std;
 5 
 6 int main()
 7 {
 8     // 栈比较简单
 9     // push,pop,size,top
10     // 基本操作很少,很容易实现和使用
11     // 一般可以写数组模拟栈
12     stack<int> s1;
13     s1.push(2);
14     s1.push(4);
15 
16     cout<<s1.size()<<endl;
17     cout<<s1.top()<<endl;
18     s1.pop();
19     cout<<s1.top()<<endl;
20 
21     return 0;
22 }

 

STL-stack栈

原文:https://www.cnblogs.com/jishuren/p/12238894.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!