c+中copy()函数有什么用,用到什么头文件

c+中copy()函数有什么用,用到什么头文件... c+中copy()函数有什么用,用到什么头文件 展开
 我来答
dltigles
推荐于2016-08-24 · TA获得超过533个赞
知道小有建树答主
回答量:401
采纳率:100%
帮助的人:125万
展开全部
1. 包含以下头文件

#include <algorithm>

2. 含义:

output_iterator copy( input_iterator start, input_iterator end, output_iterator dest );
The copy function copies the elements between start and end to dest. In other words, after copy has run,

*dest = *start
*(dest+1) = *(start+1)
*(dest+2) = *(start+2)
...
*(dest+N) = *(start+N)
The return value is the position in the destination range after the last element copied (i.e. dest+N+1). copy runs in linear time.

3. 程序举例:

For example, the following code uses copy to both copy the contents of one vector to another and to display the resulting vector:

vector<int> from_vector;
for( int i = 0; i < 10; i++ ) {
from_vector.push_back( i );
}

vector<int> to_vector(10);

copy( from_vector.begin(), from_vector.end(), to_vector.begin() );

cout << "to_vector contains: ";
copy( to_vector.begin(), to_vector.end(), ostream_iterator<int>( cout, " " ) );

cout << endl;
范xingming
2012-02-04 · TA获得超过494个赞
知道小有建树答主
回答量:510
采纳率:0%
帮助的人:234万
展开全部
一般是在字符串中用到strcpy()函数,头文件一般是#include<string.h>。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
家举符昂
2020-01-08 · TA获得超过3622个赞
知道大有可为答主
回答量:3145
采纳率:33%
帮助的人:162万
展开全部
size_type
copy(
char
*str,
size_type
num,
size_type
index
);
copy()函数拷贝自己的num个字符到str中(从索引index开始)。返回值是拷贝的字符数
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式