관리 메뉴

Kim's Programming

Algorithm - mismatch() 본문

STL - Algorithm/Algorithm - Non-Modifying

Algorithm - mismatch()

Programmer. 2016. 2. 7. 18:07

소스)


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