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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER6-22.cpp
  2. #include <vector>
  3. #include <algorithm>
  4. #include <iostream.h>
  5. using namespace std;
  6. PrintIt(char*& AString) { cout << AString << endl; }
  7. int main (void) 
  8. {
  9.   vector<char*> Birds;
  10.   vector<char*>::iterator NewEnd;
  11.   Birds.push_back("cockatoo");
  12.   Birds.push_back("galah");
  13.   Birds.push_back("cockatoo");
  14.   Birds.push_back("rosella");
  15.   Birds.push_back("king parrot");
  16.   cout << "Original vector" << endl; 
  17.   for_each(Birds.begin(), Birds.end(), PrintIt);
  18.   NewEnd = remove(Birds.begin(), Birds.end(), "cockatoo"); 
  19.   cout << "vector according to new past the end iterator" << endl; 
  20.   for_each(Birds.begin(), NewEnd, PrintIt);
  21.   cout << endl << "Original vector now. Care required!" << endl; 
  22.   for_each(Birds.begin(), Birds.end(), PrintIt);
  23. }