Display contents of vector through an iterator : vector iterator « Vector « C++






Display contents of vector through an iterator

   
 
#include <iostream>
#include <vector>
#include <cctype>
using namespace std;

int main()
{
  vector<char> v(10); // create a vector of length 10
  vector<char>::iterator p; // create an iterator
  int i;

  // assign elements in vector a value
  p = v.begin();
  i = 0;
  while(p != v.end()) {
    *p = i + 'a';
    p++;
    i++;
  }

  // display contents of vector
  cout << "Original contents:\n";
  p = v.begin();
  while(p != v.end()) {
    cout << *p << " ";
    p++;
  }
  cout << "\n\n";

  return 0;
}

/* 
Original contents:
a b c d e f g h i j


 */        
    
    
  








Related examples in the same category

1.Use const_iterator to loop through the vector
2.Change contents of vector through an iterator
3.interator operator for vector
4.Loop through all elements in a vector in reverse order by using rbegn, rend
5.vector.begin, vector.end returns the iterators
6.const_iterator from different containers