Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- directx
- C언어
- arduino compiler
- c++
- Array
- 운영체제
- map
- 아두이노 컴파일러
- priority_queue
- html
- 라인트레이서
- 통계학
- 컴퓨터 그래픽스
- Visual Micro
- 아두이노
- list
- WinAPI
- Algorithm
- Deque
- stl
- Arduino
- Stack
- 아두이노 소스
- queue
- set
- LineTracer
- 자료구조
- 수광 소자
- 시스템프로그래밍
- vector
Archives
- Today
- Total
Kim's Programming
Algorithm - copy_backward() 본문
원형)
1 2 3 4 5 | //기본형 template <class BidirectionalIterator1, class BidirectionalIterator2> BidirectionalIterator2 copy_backward (BidirectionalIterator1 first, BidirectionalIterator1 last, BidirectionalIterator2 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 22 23 24 25 | #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; } bool isEven(int val) { return val % 2 == 0; } void main() { int dataArray[] = { 1,3,5,7,9,11,13,15 }; std::vector<int> vector(8); std::copy_backward(dataArray, dataArray + 4, vector.end()); Print(vector); } | cs |
리턴값)
복사된 데이터의 처음 원소를 가리키는 Iterator를 리턴합니다.
결과)
'STL - Algorithm > Algorithm - Modifying' 카테고리의 다른 글
Algorithm - swap_ranges() (0) | 2017.07.12 |
---|---|
Algorithm - swap() (0) | 2017.07.12 |
Algorithm - copy_if() (0) | 2017.07.12 |
Algorithm - copy_n() (0) | 2017.07.11 |
Algorithm - copy() (0) | 2017.07.11 |