STL之deque

Posted love-ziji

tags:

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

deque即数组形式的双端队列。

#include<iostream>
#include<deque>
#include<algorithm>
using namespace std;

int main()
{
    //构造
    deque<int> d = { 2,6,8 };

    //遍历
    for (deque<int>::iterator it = d.begin(); it < d.end(); it++)
        cout << *it;
    cout << endl;
    //输出:268

    //入队
    //从队尾入队
    d.push_back(9);
    //从队首入队
    d.push_front(3);
    for (deque<int>::iterator it = d.begin(); it < d.end(); it++)
        cout << *it;
    cout << endl;
    //输出:32689

    //出队
    //从队首出队,无返回值
    d.pop_front();
    //从队尾出队,无返回值
    d.pop_back();
    for (deque<int>::iterator it = d.begin(); it < d.end(); it++)
        cout << *it;
    cout << endl;
    //输出:268

    //获取元素,与vector相同
    cout << d[0] << endl; //不检查下标是否越界,但速度较快。输出:2
    cout << d.at(2) << endl; //检查下标是否越界。输出:8

    //排序
    sort(d.begin(), d.end(),greater<int>()); //从大到小排序
    for (deque<int>::iterator it = d.begin(); it < d.end(); it++)
        cout << *it;
    cout << endl;
    //输出:862

    return 0;
}

以上是关于STL之deque的主要内容,如果未能解决你的问题,请参考以下文章

stl之deque双端队列容器

C++ STL 之 deque

STL之Deque

STL之deque使用详解

STL之deque用法

STL之deque