Remove all elements with the same value : list remove « list « C++ Tutorial






#include <iostream>
using std::cout;
using std::endl;

#include <list>      // list class-template definition
#include <algorithm> // copy algorithm
#include <iterator>  // ostream_iterator

int main()
{
   int array[ 4 ] = { 2, 6, 4, 8 };
   std::list< int > values;      // create list of ints
   std::list< int > otherValues; // create list of ints
   std::ostream_iterator< int > output( cout, " " );

   // insert items in values
   values.push_front( 1 );
   values.push_front( 3 );
   values.push_back( 4 );
   values.push_back( 1 );
   values.push_back( 2 );
   values.push_back( 3 );

   cout << "values contains: ";
   std::copy( values.begin(), values.end(), output );

   values.remove( 1 ); // remove all 1s

   cout << "\n\nvalues contains: ";
   std::copy( values.begin(), values.end(), output );

   cout << endl;
   return 0;
}
values contains: 3 1 4 1 2 3

values contains: 3 4 2 3








17.12.list remove
17.12.1.Remove element from a list
17.12.2.Remove all elements with the same value
17.12.3.Good way and bad way to remove elements in a list