Use remove_if() to remove all elements from list that are greater than 10. : 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 res_itr;

  for(unsigned i=1; i < 20; ++i) list1.push_back(i);

  res_itr = remove_if(list1.begin(), list1.end(),bind2nd(greater<int>(), 10));

  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)