removeif, bind2nd() and list : remove_if « STL Algorithms Modifying sequence operations « C++ Tutorial






#include <iostream>
#include <list>
#include <functional>
#include <algorithm>
using namespace std;
   
int main()
{
  list<int> list1;
  list<int>::iterator p, endp;
   
  int i;
   
  for(i=1; i < 20; i++) list1.push_back(i);
   
  p = list1.begin();
  while(p != list1.end()) {
    cout << *p << endl;
    p++;
  }
  endp = remove_if(list1.begin(), list1.end(),bind2nd(greater<int>(), 4));
   
  p = list1.begin();
  while(p != endp) {
    cout << *p << endl;
    p++;
  }
  return 0;
}








24.11.remove_if
24.11.1.Use predicate in std::remove_if
24.11.2.remove_if for list
24.11.3.removeif, bind2nd() and list
24.11.4.Use remove_if() to remove all elements from list that are greater than 10.
24.11.5.Remove all odd numbers from the vector using remove_if
24.11.6.Remove value from vector with condition with remove_if()
24.11.7.Copy elements from vector to another vector, removing elements greater than 9 (remove_copy_if)