CHAPTER11-6.cpp
上传用户:fjc899
上传日期:2007-07-03
资源大小:187k
文件大小:2k
源码类别:

STL

开发平台:

C/C++

  1. //文件名:CHAPTER11-6.cpp
  2. #include <vector>
  3. #include <list>
  4. #include <algorithm>
  5. #include <iostream>
  6. // Return whether second element is twice the first
  7. bool twice ( int elem1, int elem2 )
  8. {   return elem1 * 2 == elem2;}
  9. int main( ) 
  10. {
  11.    using namespace std;
  12.    vector <int> v1, v2;
  13.    list <int> L1;
  14.    vector <int>::iterator Iter1, Iter2;
  15.    list <int>::iterator L1_Iter, L1_inIter;
  16.    int i;
  17.    for ( i = 0 ; i <= 5 ; i++ ) {v1.push_back( 5 * i ); }
  18.    int ii;
  19.    for ( ii = 0 ; ii <= 7 ; ii++ ) {L1.push_back( 5 * ii );}
  20.    int iii;
  21.    for ( iii = 0 ; iii <= 5 ; iii++ ) {v2.push_back( 10 * iii );}
  22.    cout << "Vector v1 = ( " ;
  23.    for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ ) cout << *Iter1 << " ";
  24.    cout << ")" << endl;
  25.    cout << "List L1 = ( " ;
  26.    for ( L1_Iter = L1.begin( ) ; L1_Iter!= L1.end( ) ; L1_Iter++ ) cout << *L1_Iter << " ";
  27.    cout << ")" << endl;
  28.    cout << "Vector v2 = ( " ;
  29.    for ( Iter2 = v2.begin( ) ; Iter2 != v2.end( ) ; Iter2++ ) cout << *Iter2 << " ";
  30.       cout << ")" << endl;
  31.    // Testing v1 and L1 for mismatch under identity
  32.    pair<vector <int>::iterator, list <int>::iterator> results1;
  33.    results1 = mismatch (v1.begin( ), v1.end( ), L1.begin( ));
  34.    if ( results1.first == v1.end( ) ) cout << "The two ranges do not differ."<< endl;
  35.    else
  36.       cout << "The fist mismatch is between "<< *results1.first << " & " << *results1.second<< endl;
  37.    // Modifying L1
  38.    L1_inIter = L1.begin( );
  39.    L1_inIter++;
  40.    L1_inIter++;
  41.    L1.insert(L1_inIter, 100);
  42.    cout << "Modified L1 = ( " ;
  43.    for ( L1_Iter = L1.begin( ) ; L1_Iter!= L1.end( ) ; L1_Iter++ ) cout << *L1_Iter << " ";
  44.    cout << ")" << endl;
  45.    // Testing v1 with modified L1 for mismatch under identity
  46.    results1 = mismatch ( v1.begin( ), v1.end( ), L1.begin( ) );
  47.    if ( results1.first == v1.end( ) ) cout << "The two ranges do not differ."<< endl;
  48.    else    cout << "The fist mismatch is between "
  49.            << *results1.first << " & " << *results1.second<< endl;
  50.    // Test v1 and v2 for mismatch under the binary predicate twice
  51.    pair<vector <int>::iterator, vector <int>::iterator> results2;
  52.    results2 = mismatch ( v1.begin( ), v1.end( ), v2.begin( ), twice );
  53.    if ( results2.first == v1.end( ) )
  54.       cout << "The two ranges do not differ under the binary "<< "predicate twice." << endl;
  55.    else
  56.       cout << "The fist mismatch is between "<< *results2.first << " & " << *results2.second<< endl;
  57. }