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
- WinAPI
- queue
- Deque
- 아두이노 소스
- Array
- 수광 소자
- c++
- Arduino
- directx
- 시스템프로그래밍
- Algorithm
- 통계학
- priority_queue
- 라인트레이서
- set
- vector
- 컴퓨터 그래픽스
- list
- arduino compiler
- 운영체제
- map
- LineTracer
- html
- 자료구조
- 아두이노 컴파일러
- C언어
- stl
- Visual Micro
- 아두이노
- Stack
Archives
- Today
- Total
Kim's Programming
Algorithm - adjacent_find() 본문
소스)
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 | #include<vector> #include<iostream> #include<algorithm> bool find_adj(int i,int j) { if (i == j) return true; return false; } void main() { std::vector<int> Vector = { 1,3,3,5,7,7,9,11,13,15 }; std::vector<int>::iterator Iter; Iter = std::adjacent_find(Vector.begin(), Vector.end()); if (Iter != Vector.end()) std::cout << "first pair of repeated element ->" << *Iter << std::endl; else std::cout << "no data" << std::endl; Iter = std::adjacent_find(++Iter, Vector.end(), find_adj); if (Iter != Vector.end()) std::cout << "second pair of repeated element ->" << *Iter << std::endl; else std::cout << "no data" << std::endl; } | cs |
내용)
adjacent_find()함수는 파라메터에 따라서 다르게 작동합니다.
- adjacent_find(x,y)(17줄)
adjacent_find(x,y)함수는 이터레이터 x가 가리키는 위치부터 이터레이터 y가 가리키는 위치 사이의 데이터들중에서 중복되는 데이터가 발견되면 그 앞에 부분을 가리키는 iterator를 리턴합니다. - adjacent(x,y,z)(24줄)
adjacent_find(x,y,z)함수는 함수는 이터레이터 x가 가리키는 위치부터 이터레이터 y가 가리키는 위치 사이의 데이터들중에서 z로 true값을 던지는 부분의 앞을 가리키는 iterator를 리턴합니다.
결과)
'STL - Algorithm > Algorithm - Non-Modifying' 카테고리의 다른 글
Algorithm - equal() (0) | 2016.02.07 |
---|---|
Algorithm - mismatch() (0) | 2016.02.07 |
Algorithm - count_if() (0) | 2016.02.07 |
Algorithm - count() (0) | 2016.02.07 |
Algorithm - find_first_of() (0) | 2016.02.07 |