stack
Posted 猪八戒1.0
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了stack相关的知识,希望对你有一定的参考价值。
#include<bits/stdc++.h>
using namespace std;
int main()
stack<int> s;
stack<int> s1;
for(int i=1;i<=15;i++)
s.push(i);
cout<<"栈中元素个数:"<<s.size()<<endl;
cout<<"栈顶元素是:"<<s.top()<<endl;
s.pop(); //删除栈顶元素
s1=s;
while(!s1.empty())
cout<<s1.top()<<" ";
s1.pop();
cout<<endl;
cout<<"栈中元素个数:"<<s.size()<<endl;
cout<<"栈中元素个数:"<<s1.size()<<endl;
return 0;
以上是关于stack的主要内容,如果未能解决你的问题,请参考以下文章