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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER11-4.cpp
  2. #include <list>
  3. #include <vector>
  4. #include <algorithm>
  5. #include <iostream>
  6. // Return whether second element is twice the first
  7. bool twice ( int elem1, int elem2 )
  8. {   return 2 * elem1 == elem2;}
  9. int main( )
  10. {
  11.    using namespace std;
  12.    list <int> L;
  13.    list <int>::iterator Iter;
  14.    list <int>::iterator result;
  15.    L.push_back( 40 );
  16.    L.push_back( 20 );
  17.    L.push_back( 10 );
  18.    L.push_back( 40 );
  19.    L.push_back( 10 );
  20.    cout << "L = ( " ;
  21.    for ( Iter = L.begin( ) ; Iter != L.end( ) ; Iter++ ) cout << *Iter << " ";
  22.    cout << ")" << endl;
  23.    result = find( L.begin( ), L.end( ), 10 );
  24.    if  ( result == L.end( ) ) cout << "There is no 10 in list L." << endl;
  25.    else  result++;
  26.       cout << "There is a 10 in list L and it is"<< " followed by a " << *(result) << "." << endl;
  27.    vector <int> v1, v2;
  28.    list <int> L1;
  29.    vector <int>::iterator Iter1, Iter2;
  30.    list <int>::iterator L1_Iter, L1_inIter;
  31.    int i;
  32.    for ( i = 0 ; i <= 5 ; i++ ){v1.push_back( 5 * i );}
  33.    for ( i = 0 ; i <= 5 ; i++ ){v1.push_back( 5 * i );}
  34.    int ii;
  35.    for ( ii = 1 ; ii <= 4 ; ii++ ){L1.push_back( 5 * ii );}
  36.    int iii;
  37.    for ( iii = 2 ; iii <= 4 ; iii++ ){v2.push_back( 10 * iii );}
  38.    cout << "Vector v1 = ( " ;
  39.    for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ ) cout << *Iter1 << " ";
  40.    cout << ")" << endl;
  41.    cout << "List L1 = ( " ;
  42.    for ( L1_Iter = L1.begin( ) ; L1_Iter!= L1.end( ) ; L1_Iter++ )cout << *L1_Iter << " ";
  43.    cout << ")" << endl;
  44.    cout << "Vector v2 = ( " ;
  45.    for ( Iter2 = v2.begin( ) ; Iter2 != v2.end( ) ; Iter2++ ) cout << *Iter2 << " ";
  46.       cout << ")" << endl;
  47.    // Searching v1 for a match to L1 under identity
  48.    vector <int>::iterator result1;
  49.    result1 = find_end ( v1.begin( ), v1.end( ), L1.begin( ), L1.end( ) );
  50.    if ( result1 == v1.end( ) ) cout << "There is no match of L1 in v1."<< endl;
  51.    else   cout << "There is a match of L1 in v1 that begins at "
  52.            << "position "<< result1 - v1.begin( ) << "." << endl;
  53.    // Searching v1 for a match to L1 under the binary predicate twice
  54.    vector <int>::iterator result2;
  55.    result2 = find_end ( v1.begin( ), v1.end( ), v2.begin( ), v2.end( ), twice );
  56.    if ( result2 == v1.end( ) ) cout << "There is no match of L1 in v1."<< endl;
  57.    else    cout << "There is a sequence of elements in v1 that "
  58.            << "are equivalent to thosen in v2 under the binary "
  59.            << "predicate twice and that begins at position "<< result2 - v1.begin( ) << "." << endl;
  60. }