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
- 수광 소자
- stl
- c++
- Deque
- html
- Array
- C언어
- LineTracer
- arduino compiler
- set
- Visual Micro
- 컴퓨터 그래픽스
- priority_queue
- Arduino
- 아두이노 컴파일러
- 통계학
- list
- 자료구조
- vector
- Stack
- 시스템프로그래밍
- 라인트레이서
- map
- Algorithm
- WinAPI
- 아두이노 소스
- 아두이노
- queue
Archives
- Today
- Total
Kim's Programming
Algorithm - transform() 본문
원형)
1 2 3 4 5 6 7 8 9 10 11 | //단항 연산 template <class InputIterator, class OutputIterator, class UnaryOperation> OutputIterator transform (InputIterator first1, InputIterator last1, OutputIterator result, UnaryOperation op); //이진 연산 template <class InputIterator1, class InputIterator2, class OutputIterator, class BinaryOperation> OutputIterator transform (InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, OutputIterator result, BinaryOperation binary_op); | cs |
의미)
1) 단항 연산
[Iterator first1, Iterator last1)사이의 데이터 들에 대해서 단항연산 op를 적용한 값들을 Iterator result가 가리키는 위치부터 저장합니다.
2) 이항 연산
[Iterator first1, Iterator last1)사이의 데이터 들과 Iterator first2부터의 데이터 각각에 대하여 이항연산 binary_op를 계산한 값을 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 26 27 28 29 30 31 | #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; } int Increase(int i) { return ++i; } void main() { std::vector<int> vector1 = { 1,3,5,7,9 }; std::vector<int> vector2 = { 2,4,6,8,10 }; std::vector<int> result(8); std::cout << "vector 1 --->"; Print(vector1); std::cout << "vector 2 --->"; Print(vector2); std::cout << "result --->"; Print(result); std::transform(vector1.begin(), vector1.end(), result.begin(), Increase); std::cout << "vector 1 --->"; Print(vector1); std::cout << "vector 2 --->"; Print(vector2); std::cout << "result --->"; Print(result); std::transform(vector1.begin(), vector1.end(), vector2.begin(),result.begin(),std::plus<int>()); std::cout << "vector 1 --->"; Print(vector1); std::cout << "vector 2 --->"; Print(vector2); std::cout << "result --->"; Print(result); } | cs |
내용)
transform(w,x,y,z)함수는 이터레이터 w와 x사이의 데이터 들을 z를 이용하여 변형한 다음 y에 복사합니다. 끝났으면 y에 복사된 마지막 데이터를 가리키는 iterator를 리턴합니다.
결과)
'STL - Algorithm > Algorithm - Modifying' 카테고리의 다른 글
Algorithm - replace_if() (0) | 2017.07.12 |
---|---|
Algorithm - replace() (0) | 2017.07.12 |
Algorithm - iter_swap() (0) | 2017.07.12 |
Algorithm - swap_ranges() (0) | 2017.07.12 |
Algorithm - swap() (0) | 2017.07.12 |