我是靠谱客的博主 虚幻狗,最近开发中收集的这篇文章主要介绍第十四周阅读程序(3),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

问题及代码:

#include <iterator>
#include <list>
#include <algorithm>
#include <iostream>
using namespace std;
int main()
{
    int ia[5] = {1,2,3,4};
    list<int> id(ia, ia+4);
    ostream_iterator<int> outite(cout, " ");
    copy(id.begin(), id.end(), outite);
    cout << endl;
    copy(ia+1, ia+2, front_inserter(id));
    copy(id.begin(), id.end(), outite);
    cout << endl;
    copy(ia+3, ia+4, back_inserter(id));
    copy(id.begin(), id.end(), outite);
    cout << endl;
    list<int>::iterator ite = find(id.begin(), id.end(), 3);
    copy(ia+0, ia+2, inserter(id, ite));
    copy(id.begin(), id.end(), outite);
    cout << endl;
    copy(id.rbegin(), id.rend(), outite);
    cout << endl;
    return 0;
}

运行结果:

知识点:

id.rbegin(), id.rend()

容器定义的反向迭代器rbegin,rend

分别返回指向容器尾元素和首元素前一位置的反向迭代器



最后

以上就是虚幻狗为你收集整理的第十四周阅读程序(3)的全部内容,希望文章能够帮你解决第十四周阅读程序(3)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部