栈练习3

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了栈练习3相关的知识,希望对你有一定的参考价值。

脑残。。无语

 1 #include<cstdio>
 2 #include<iostream>
 3 #include<stack>
 4 using namespace std;
 5 int n,k,a;
 6 int main()
 7 {
 8     stack<int>ss; 
 9     cin>>n;
10     while(n--)
11     {
12         cin>>k;
13         if(k==1)
14         {
15             cin>>a;
16             ss.push(a);
17         }
18         if(k==2)
19         {
20             ss.pop();
21         }
22         if(k==3)
23         {
24             cout<<ss.top()<<endl;
25         }
26     }
27     return 0;
28  } 

 

以上是关于栈练习3的主要内容,如果未能解决你的问题,请参考以下文章

codevs 3139 栈练习3

栈练习3

栈练习3

栈练习1,2,3

算法(Algorithms)第4版 练习 1.3.9

吐泡泡(2018年全国多校算法寒假训练营练习比赛(第二场)+栈模拟)+Plug-in(codeforces81A+栈模拟)