程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 簡單的程序诠釋C++ STL算法系列之八:mismatch

簡單的程序诠釋C++ STL算法系列之八:mismatch

編輯:C++入門知識

 

C++STL的非變易算法(Non-mutating algorithms)是一組不破壞操作數據的模板函數,用來對序列數據進行逐個處理、元素查找、子序列搜索、統計和匹配。

     mismatch算法是比較兩個序列,找出首個不匹配元素的位置。它有如下兩個函數原型,找出迭代器區間[first1, last1) 上第一個元素*i , 它和迭代器區間[first2, first2 + (last1 - first1))上的元素* (first2 + (i - first1))不相等(或者不滿足二元謂詞binary_pred條件)。通過匹配對象pair返回這兩個元素的迭代器,指示不匹配元素位置。

 

     函數原型:

 

 

template<class InputIterator1, class InputIterator2> 

   pair<InputIterator1, InputIterator2> mismatch( 

      InputIterator1 _First1,   

      InputIterator1 _Last1, 

      InputIterator2 _First2 

    ); 

template<class InputIterator1, class InputIterator2, class BinaryPredicate> 

   pair<InputIterator1, InputIterator2> mismatch( 

      InputIterator1 _First1,  

      InputIterator1 _Last1, 

      InputIterator2 _First2 

      BinaryPredicate _Comp 

   ); 

  

 

示例代碼:

 

 

/*******************************************************************

 * Copyright (C) Jerry Jiang             

 * File Name   : mismatch.cpp

 * Author      : Jerry Jiang

 * Create Time : 2011-10-9 21:16:53

 * Mail        : [email protected]

 * Blog        : http://blog.csdn.net/jerryjbiao               

 * Description : 簡單的程序诠釋C++ STL算法系列之八                

 *               非變易算法: 元素不匹配查找mismatch 

 ******************************************************************/ 

 

#include <algorithm> 

#include <vector> 

#include <iostream> 

 

using namespace std; 

 

bool strEqual(const char* s1, const char* s2) 

    return strcmp(s1, s2) == 0 ? true : false; 

 

typedef vector<int>::iterator ivecIter; 

 

int main() 

    vector<int> ivec1, ivec2; 

    ivec1.push_back(2); 

    ivec1.push_back(0); 

    ivec1.push_back(1); 

    ivec1.push_back(4); 

 

    ivec2.push_back(2); 

    ivec2.push_back(0); 

    ivec2.push_back(1); 

    ivec2.push_back(7); 

 

    pair<ivecIter, ivecIter> retCode; 

    retCode = mismatch(ivec1.begin(), ivec1.end(), ivec2.begin()); 

    if (retCode.first == ivec1.end() && retCode.second == ivec2.begin()) 

    { 

        cout << "ivec1 和ivec2完全相同" << endl; 

    }  

    else 

    { 

        cout << "ivec1 和ivec2 不相同,不匹配的元素為:\n" 

             << *retCode.first << endl 

             << *retCode.second << endl; 

    } 

 

 

    char* str1[] = {"appple", "pear", "watermelon", "banana", "grape"}; 

    char* str2[] = {"appple", "pears", "watermelons", "banana", "grape"}; 

 

    pair<char**, char**> retCode2 = mismatch(str1, str1+5, str2, strEqual); 

    if (retCode2.first == str1+5 && retCode2.second == str2+5) 

    { 

        cout << "str1 和str2 完全相同" << endl; 

    }  

    else 

    { 

        cout << "str1 和str2  不相同,不匹配的字符串為:" << endl 

             << str1[retCode2.first - str1] << endl 

             << str2[retCode2.second - str2] << endl; 

    } 

 

 

    return 0; 

}   

摘自:Jerry.Jiang的程序人生

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved