C++ 算法 copy_n()函数
C++ 算法 copy_n() 函数指定要复制到新容器中的元素数量。该函数用于将容器[first,last)中的 n 个元素复制到从 result 开始的另一个容器中。
语法
template<class InputIterator, class Size, class OutputIterator>
OutputIterator copy_n(InputIterator first, Size n, OutputIterator result);
参数
first :它是范围的第一个元素的输入迭代器,该元素本身包括在范围内。
last :它是范围的最后一个元素的输入迭代器,该元素本身不包括在范围内。
result :它是新容器中第一个复制元素的输出迭代器。
返回值
返回一个迭代器,该迭代器指向以result开头的新范围的最后一个元素。
示例1
#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
int main()
{
vector<int> u1 = {2,6,8,4,9,4};
vector<int> u2(6);
vector<int> u3(6);
copy(u1.begin(), u1.begin()+3, u2.begin());
cout<<"The new vector with copy contains:";
for(int k=0; k<u2.size(); k++)
cout<<u2[k]<<" ";
copy_n(u1.begin(),4,u3.begin());
cout<<"\n";
cout<<"The new vector using copy_n contains:";
for(int m=0; m<u3.size(); m++)
cout<<u3[m]<<" ";
}
输出:
The new vector with copy contains: 2 6 8 0 0 0
The new vector using copy_n contains:2 6 8 4 0 0
示例2
#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
int main()
{
int newints[]={15,25,35,45,55,65,75};
std::vector<int> newvector;
newvector.resize(7);
std::copy_n(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
复杂性
从第一个元素到最后一个元素,函数的复杂度是线性的。
数据竞争
容器中最多访问n个元素。
异常
如果容器中的任何元素抛出异常,该函数会抛出异常。