Uses ostream_iterator and copy algorithm to output list elements : list « List « C++






Uses ostream_iterator and copy algorithm to output list elements

  
 

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

#include <list>      
#include <algorithm> 
#include <iterator>  

template < typename T > void printList( const std::list< T > &listRef );

int main()
{
   int array[ 4 ] = { 2, 6, 4, 8 };
   std::list< int > values;      
   std::list< int > otherValues; 

   values.push_front( 1 );
   values.push_front( 2 );
   values.push_back( 4 );
   values.push_back( 3 );

   cout << "values contains: ";
   printList( values );
   cout << endl;
   return 0;
}

template < typename T > void printList( const std::list< T > &listRef )
{
    std::ostream_iterator< T > output( cout, " " );
    std::copy( listRef.begin(), listRef.end(), output );
}

/* 
values contains: 2 1 4 3

 */        
    
  








Related examples in the same category

1.Instantiating an STL List of Integers
2.Use generic list to create a list of chars
3.Use generic list to create list of strings
4.Store class objects in a listStore class objects in a list
5.Store class objects with overloaded operators in a list.
6.Use std::copy to print all elements in a list
7.Pass list to a function
8.Add elements in a multiset to a list
9.access list
10.Comparison Algorithms
11.Add elements in a set to a list
12.Merge two lists.Merge two lists.
13.Using the list as a container for double value