home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / stl2vac.zip / STLport-4_5_3.zip / STLport-4.5.3 / test / regression / adjfind1.cpp < prev    next >
C/C++ Source or Header  |  2000-12-07  |  896b  |  36 lines

  1. // STLport regression testsuite component.
  2. // To compile as a separate example, please #define MAIN.
  3.  
  4. #include <vector>
  5. #include <algorithm>
  6. #include <iostream>
  7.  
  8. #ifdef MAIN 
  9. #define adjfind1_test main
  10. #endif
  11.  
  12. #if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
  13. using namespace std;
  14. #endif
  15. int adjfind1_test(int, char**)
  16. {
  17.   cout<<"Results of adjfind1_test:"<<endl;
  18.   typedef vector<int> IntVector;
  19.   IntVector v(10);
  20.   for(int i = 0; i < v.size(); i++)
  21.     v[i] = i;
  22.   IntVector::iterator location;
  23.   location = adjacent_find(v.begin(), v.end());
  24.   if(location != v.end())
  25.     cout << "Found adjacent pair of: " << *location << endl;
  26.   else
  27.     cout << "No adjacent pairs" << endl;
  28.   v[6] = 7;
  29.   location = adjacent_find(v.begin(), v.end());
  30.   if(location != v.end())
  31.     cout << "Found adjacent pair of: " << *location << endl;
  32.   else
  33.     cout << "No adjacent pairs" << endl;
  34.   return 0;
  35. }
  36.