C++ 算法 copy() 函数用于将容器 [first,last] 的所有元素从结果开始复制到不同的容器中。
用法
template<class InputIterator, class OutputIterator>OutputIterator copy(InputIterator first, InputIterator last, OutputIterator result);
参数
first:它是范围的第一个元素的输入迭代器,其中元素本身包含在范围内。
last: 它是范围最后一个元素的输入迭代器,其中元素本身不包含在范围内。
result:它是复制元素的新容器的第一个元素的输出迭代器。
返回值
返回以结果开头的新范围的最后一个元素的迭代器。
例子1
#include<iostream>
#include<algorithm>
#include<vector>
int main()
{
int newints[]={15,25,35,45,55,65,75};
std::vector<int> newvector(7);
std::copy (newints, newints+7, newvector.begin());
std::cout <<"newvector contains:";
for (std::vector<int>::iterator ti= newvector.begin(); ti!=newvector.end(); ++ti)
std::cout<<" " <<*ti;
std::cout<<"\n";
return 0;
}
输出:
newvector contains:15 25 35 45 55 65 75
复杂度
函数的复杂度从第一个元素到最后一个元素是线性的。
数据竞争
部分或全部容器对象被访问。
异常
如果任何容器元素抛出一个异常,该函数就会抛出异常。
相关用法
- C++ copy_n()用法及代码示例
- C++ copy_backward()用法及代码示例
- C++ copysign()用法及代码示例
- C++ copy_if()用法及代码示例
- C++ count()用法及代码示例
- C++ complex cosh()用法及代码示例
- C++ count_if()用法及代码示例
- C++ conj()用法及代码示例
- C++ cosh()用法及代码示例
- C++ cos()用法及代码示例
- C++ complex cos()用法及代码示例
- C++ clock()用法及代码示例
- C++ cbrt()用法及代码示例
- C++ c32rtomb()用法及代码示例
- C++ c16rtomb()用法及代码示例
- C++ ctime()用法及代码示例
- C++ cin get()用法及代码示例
- C++ ceil()用法及代码示例
- C++ cauchy_distribution a()用法及代码示例
- C++ unordered_map cbegin用法及代码示例
注:本文由纯净天空筛选整理自 C++ Algorithm Function copy()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。