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
- Stack
- priority_queue
- map
- directx
- 자료구조
- 운영체제
- set
- WinAPI
- 아두이노 소스
- Arduino
- c++
- LineTracer
- 아두이노
- html
- 시스템프로그래밍
- 아두이노 컴파일러
- list
- Visual Micro
- 컴퓨터 그래픽스
- 라인트레이서
- vector
- C언어
- 통계학
- Algorithm
- arduino compiler
- stl
- queue
- Array
- Deque
- 수광 소자
Archives
- Today
- Total
Kim's Programming
Algorithm - for_each() 본문
원형)
1 2 | template <class InputIterator, class Function> Function for_each (InputIterator first, InputIterator last, Function fn); | cs |
의미)
[Iterator first, Iterator last)사이에 있는 원소들에 대하여 함수 fn을 적용합니다.
소스)
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 | #include<iostream> #include<algorithm> #include<vector> void Function(int val) { std::cout << val * 2 << ' '; } typedef struct Printstr { public: void operator()(int val) { std::cout << val << ' '; } }Printstr; void main() { std::vector<int> vector = { 2,4,6,10,12,14,16 }; std::for_each(vector.begin(), vector.end(), Function); std::cout << std::endl; std::vector<int> vector2 = { 2,4,6,10,12,14,16 }; std::for_each(vector2.begin(), vector2.end(), Printstr()); std::cout << std::endl; } | cs |
내용)
std::move(fn)호출과 처럼 fn을 리턴합니다.
결과)
'STL - Algorithm > Algorithm - Non-Modifying' 카테고리의 다른 글
Algorithm - find_if() (0) | 2017.07.13 |
---|---|
Algorithm - find() (0) | 2017.07.13 |
Algorithm - none_of() (0) | 2017.07.13 |
Algorithm - any_if() (0) | 2017.07.13 |
Algorithm - all_of() (0) | 2017.07.13 |