C++ list push_back() in for loop

Description

C++ list push_back() in for loop

#include <iostream>
#include <list>
using namespace std;
int main()//from w  w w.ja v a  2 s  .co m
{
   int arr[] = { 2, 4, 6, 8, 10 };       // array of ints
   list<int> theList;
   for(int j=0; j<5; j++)                // transfer array
      theList.push_back( arr[j] );       // to list
   list<int>::reverse_iterator revit;    // reverse iterator
   revit = theList.rbegin();             // iterate backwards
   while( revit != theList.rend() )      // through list,
      cout << *revit++ << ' ';           // displaying output
   cout << endl;
   return 0;
}



PreviousNext

Related