Use list.splice() to remove elements in a list and insert at end of values : list splice « 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( 2 );

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

   otherValues.insert( otherValues.begin(), array, array + 4 );

   values.splice( values.end(), otherValues );

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

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

values contains: 3 1 4 2 2 6 4 8








17.15.list splice
17.15.1.Use list.splice() to remove elements in a list and insert at end of values
17.15.2.Insert all elements of list1 before the first element with value 3 of list2
17.15.3.splice one list into another
17.15.4.Move first element to the end