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
- arduino compiler
- directx
- Algorithm
- 라인트레이서
- 통계학
- 수광 소자
- 컴퓨터 그래픽스
- priority_queue
- Stack
- 아두이노
- list
- 운영체제
- vector
- html
- 아두이노 컴파일러
- Visual Micro
- LineTracer
- set
- stl
- 자료구조
- C언어
- Arduino
- map
- c++
- Deque
- 시스템프로그래밍
- Array
- WinAPI
- queue
- 아두이노 소스
Archives
- Today
- Total
Kim's Programming
Algorithm - mismatch() 본문
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #include<vector> #include<iostream> #include<algorithm> void main() { std::vector<int> Vector = { 10,20,30,40,50}; int Array[] = { 10,20,80,320,1024 }; std::pair<std::vector<int>::iterator, int *> Pair; Pair = std::mismatch(Vector.begin(), Vector.end(),Array); std::cout << "First mismatching element ---> " << *Pair.first << " & " << *Pair.second << std::endl; } | cs |
내용)
mismatch(x,y,z)함수는 x부터 y범위 까지의 구간에 한해서 Array와 차례 차례 비교를 합니다. 비교를 하다가 일치하지 않는 값들을 pair로 리턴합니다.
결과)
'STL - Algorithm > Algorithm - Non-Modifying' 카테고리의 다른 글
Algorithm - is_permutation() (0) | 2016.02.07 |
---|---|
Algorithm - equal() (0) | 2016.02.07 |
Algorithm - count_if() (0) | 2016.02.07 |
Algorithm - count() (0) | 2016.02.07 |
Algorithm - adjacent_find() (0) | 2016.02.07 |