Create a list and then Sort the list - C++ STL

C++ examples for STL:list

Description

Create a list and then Sort the list

Demo Code

#include <iostream> 
#include <list> 
#include <algorithm> // copy algorithm 
#include <iterator> // ostream_iterator 
using namespace std; 

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

int main() { /* w  w  w  .  j a va  2  s.  c om*/
   const int SIZE = 4; 
   int array[ SIZE ] = { 2, 6, 4, 8 }; 
   list< int > values; // create list of ints 
   list< int > otherValues; // create list of ints 

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

   printList( values ); 
   
   values.sort(); // sort values 
   cout << "\nvalues after sorting contains: "; 
   printList( values ); 

  
}

template < typename T > void printList( const list< T > &listRef ) { 
   if ( listRef.empty() ) // list is empty 
       cout << "List is empty"; 
   else 
   { 
       ostream_iterator< T > output( cout, " " ); 
       copy( listRef.begin(), listRef.end(), output ); 
   }
}

Result


Related Tutorials