관리 메뉴

Kim's Programming

Algorithm - copy() 본문

STL - Algorithm/Algorithm - Modifying

Algorithm - copy()

Programmer. 2017. 7. 11. 23:30

원형)


1
2
3
//기본형
template <class InputIterator, class OutputIterator>
  OutputIterator copy (InputIterator first, InputIterator last, OutputIterator result);
cs



의미)


[Iterator first, Iterator last)사이에 있는 데이터들을 Iterator result가 가리키는 위치부터 복사를 합니다.



소스)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include<iostream>
#include<algorithm>
#include<vector>
 
void Print(const std::vector<int>& target)
{
    for (std::vector<int>::const_iterator iterPos = target.begin(); iterPos != target.cend(); iterPos++)
        std::cout << *iterPos << ' ';
    std::cout << std::endl;
}
 
void main()
{
    int dataArray[] = { 1,3,5,7,9,11,13,15 };
    std::vector<int> vector(8);
    Print(vector);
 
    std::copy(dataArray, dataArray + 8, vector.begin());
    Print(vector);
}
 
cs



내용)


복사된 데이터 중에서 가장 마지막을 가리키는 Iterator를 리턴합니다.



결과)




'STL - Algorithm > Algorithm - Modifying' 카테고리의 다른 글

Algorithm - swap_ranges()  (0) 2017.07.12
Algorithm - swap()  (0) 2017.07.12
Algorithm - copy_backward()  (0) 2017.07.12
Algorithm - copy_if()  (0) 2017.07.12
Algorithm - copy_n()  (0) 2017.07.11