欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C++ STL queue 队列容器使用示例

程序员文章站 2024-03-17 23:41:22
...

C++ STL queue 队列容器使用示例

#include<iostream>
#include<queue>
#include<iterator>
#include<algorithm>
using namespace std;
/**
queue容器:队列操作:push pop front back
不能遍历,没有迭代器,不能随机访问
*/
////////////////////////////////////////////////////////////////

void Test01()
{
    queue<int> que1,que2;
    queue<int> que3(que1);
    //初始化和赋值
    que1.push(1);
    que1.push(2);
    cout << que1.front() << " " <<que1.back()<<endl;
    que1.pop();
    //大小
    cout << que1.empty() <<endl;
    cout << que1.size() <<endl;
}
////////////////////////////////////////////////////////////////
int main()
{
    Test01();

    return 0;
}