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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER11-11.cpp
  2. #include <vector>
  3. #include <algorithm>
  4. #include <iostream>
  5. bool greater5 ( int value )
  6. {   return value >5;}
  7. int main( ) {
  8.    using namespace std;
  9.    vector <int> v1, v2;
  10.    vector <int>::iterator Iter1, Iter2;
  11.    int i;
  12.    for ( i = 0 ; i <= 10 ; i++ ) { v1.push_back( i ); }
  13.    random_shuffle( v1.begin( ), v1.end( ) );
  14.    cout << "Vector v1 is ( " ;
  15.    for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ ) cout << *Iter1 << " ";
  16.    cout << ")." << endl;
  17.    // Partition the range with predicate greater10
  18.    partition ( v1.begin( ), v1.end( ), greater5 );
  19.    cout << "The partitioned set of elements in v1 is: ( " ;
  20.    for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ ) cout << *Iter1 << " ";
  21.    cout << ")." << endl;
  22. }