码迷,mamicode.com
首页 > 其他好文 > 详细

deque

时间:2014-06-16 07:17:15      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   http   

bubuko.com,布布扣
#include <deque>
#include <iostream>
using namespace std;

int main(int argc, char *argv[])
{
    deque <int> A, B;

    deque <int> ::iterator it;

    A.push_front(1); B.push_back(1);
    A.push_front(2); B.push_back(2);
    A.push_front(3); B.push_back(3);

    A.pop_front(); B.pop_back();

    A.insert(A.begin(), 4);
    B.erase(B.begin());

    for (it = A.begin(); it != A.end(); it++)
        cout << *it << " ";
    cout << endl;

    for (it = B.begin(); it != B.end(); it++)
        cout << *it << " ";
    cout << endl;
    return 0;
}
bubuko.com,布布扣

 

deque,布布扣,bubuko.com

deque

标签:style   class   blog   code   java   http   

原文地址:http://www.cnblogs.com/Susake/p/3783959.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!