首页 > 编程语言 > 详细

C++ - 复制容器(container)的元素至另一个容器

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

复制容器(container)的元素至另一个容器


本文地址: http://blog.csdn.net/caroline_wendy


C++复制容器(container)元素, 可以使用标准库(STL)copy()和copy_n()函数.

函数样式: OutputIterator copy (InputIterator first, InputIterator last, OutputIterator result)


代码:

/*
 * main.cpp
 *
 *  Created on: 2014年6月17日
 *      Author: Spike
 */

#include <iostream>
#include <algorithm>
#include <iterator>
#include <vector>

using namespace std;

int main (void)
{
	std::vector<int> vi = {1, 2, 3, 4, 0, 0, 0, 8, 9, 10};
	std::vector<int> vb = {5, 6, 7};
	std::vector<int>::iterator it = vi.begin()+4;
	std::copy(vb.begin(), vb.end(), it);
	std::copy(vi.begin(), vi.end(), std::ostream_iterator<int>(std::cout, " "));
	std::cout << std::endl;
	return 0;
}

输出:

1 2 3 4 5 6 7 8 9 10 



bubuko.com,布布扣


C++ - 复制容器(container)的元素至另一个容器,布布扣,bubuko.com

C++ - 复制容器(container)的元素至另一个容器

原文:http://blog.csdn.net/caroline_wendy/article/details/31726637

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!