Use generic list to create a list of chars : list « List « C++






Use generic list to create a list of chars

  
 

#include <iostream>
#include <cassert>
#include <list>
#include <algorithm>  // For reverse
using namespace std;



int main()
{
  char x[5] = {'a', 'b', 'c', 'd', 'e'};

  list<char> list1(&x[0], &x[5]);


  reverse(list1.begin(), list1.end());

  list<char>::iterator i;

  cout.precision(10);

  for (i = list1.begin(); i != list1.end(); ++i)
    cout << *i << endl;

  cout << endl;


  return 0;
}

/* 
e
d
c
b
a
*/        
    
  








Related examples in the same category

1.Instantiating an STL List of Integers
2.Use generic list to create list of strings
3.Store class objects in a listStore class objects in a list
4.Store class objects with overloaded operators in a list.
5.Use std::copy to print all elements in a list
6.Pass list to a function
7.Uses ostream_iterator and copy algorithm to output list elements
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