1 Star 1 Fork 0

AlbertDarren / STL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
queueContainerAdapter.cpp 532 Bytes
一键复制 编辑 原始数据 按行查看 历史
AlbertDarren 提交于 2022-04-03 00:55 . first commit
/**
* @author AlbertDarren
* @contact 2563491540@qq.com
*/
#include <iostream>
#include <queue>
#include <algorithm>
using namespace std;
int main_8()
{
queue<int,deque<int>> qu;
qu.push(-3);
qu.push(1);
qu.push(6);
qu.push(-5);
qu.push(7);
while (!qu.empty())
{
cout << "The first element of queue is "<<qu.front() << endl;
cout << "The last element of queue is "<<qu.back() << endl;
cout << "The size of queue is "<<qu.size() << endl;
qu.pop();
}
return 0;
}
C++
1
https://gitee.com/AlbertDarren_admin/stl.git
git@gitee.com:AlbertDarren_admin/stl.git
AlbertDarren_admin
stl
STL
master

搜索帮助