1 Star 1 Fork 0

AlbertDarren / STL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
stackContainerAdapter.cpp 650 Bytes
一键复制 编辑 原始数据 按行查看 历史
AlbertDarren 提交于 2022-04-03 00:55 . first commit
/**
* @author AlbertDarren
* @contact 2563491540@qq.com
*/
#include <iostream>
#include <stack>
#include <vector>
#include <list>
#include <deque>
using namespace std;
int main_7()
{
stack<int,deque<int>> s;
s.push(2);
s.push(1);
stack<int,vector<int>> s1;
s1.push(1);
s1.push(4);
s1.push(-1);
stack<int,list<int>> s2;
s2.push(3);
cout << s1.top() << endl;
if (s.empty())
{
cout << "empty" << endl;
}
else
{
cout << "Not empty" << endl;
cout << s.top() << endl;
s.pop();
cout << s.top() << endl;
cout << s.size() << endl;
}
return 0;
}
C++
1
https://gitee.com/AlbertDarren_admin/stl.git
git@gitee.com:AlbertDarren_admin/stl.git
AlbertDarren_admin
stl
STL
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891