博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Copy 方法 和 ostream 迭代器
阅读量:6150 次
发布时间:2019-06-21

本文共 967 字,大约阅读时间需要 3 分钟。

头文件

#include <algorithm>

template<class inputIterator, class outputIterator>

outputIterator copy(InputIterator beg,InputIterator end, outputIterator beg)

从原型上看主要作用是将一个容器的迭代器拷贝给另外一个容器的迭代器

示例代码:

#include 
#include
#include
#include
using namespace std;int main() { int intArray[] = {0,1,2,3,4,5,6,7,8,9}; vector
vecList(10); copy(intArray,intArray+10,vecList.begin());//将intArray中的元素拷贝给vecList copy(intArray+1,intArray+10,intArray);//将intArray中元素向左移动1个位置 copy(vecList.rbegin()+2,vecList.rend(),vecList.rbegin());//将intArray中元素向右移动2个位置 ostream_iterator
screen(cout," "); copy(intArray,intArray+10,screen);// 将intArray中的元素逐个输出 copy(vecList.begin(),vecList.end(),screen);//将vecList中的元素逐个输出 copy(vecList.begin(),vecList.end(),ostream_iterator
(cout," ")); return 0;}

转载于:https://www.cnblogs.com/wjchang/p/3671660.html

你可能感兴趣的文章
AOP
查看>>
我的友情链接
查看>>
NGUI Label Color Code
查看>>
.NET Core微服务之基于Polly+AspectCore实现熔断与降级机制
查看>>
vue组件开发练习--焦点图切换
查看>>
浅谈OSI七层模型
查看>>
Webpack 2 中一些常见的优化措施
查看>>
移动端响应式
查看>>
python实现牛顿法求解求解最小值(包括拟牛顿法)【最优化课程笔记】
查看>>
js中var、let、const的区别
查看>>
腾讯云加入LoRa联盟成为发起成员,加速推动物联网到智联网的进化
查看>>
从Python2到Python3:超百万行代码迁移实践
查看>>
Windows Server已可安装Docker,Azure开始支持Mesosphere
查看>>
简洁优雅地实现夜间模式
查看>>
react学习总结
查看>>
微软正式发布PowerShell Core 6.0
查看>>
Amazon发布新的会话管理器
查看>>
InfoQ趋势报告:DevOps 和云计算
查看>>
舍弃Python,为什么知乎选用Go重构推荐系统?
查看>>
在soapui上踩过的坑
查看>>