Declare reverse iterator to a vector<int> - C++ STL

C++ examples for STL:vector

Description

Declare reverse iterator to a vector<int>

Demo Code

#include <iostream>
#include <vector>
using namespace std;
void show(const char *msg, vector<int> vect);
int main() {//from w w  w .  j  a  v  a2s  . co  m
   vector<int> v(10);
   for(unsigned i=0; i < v.size(); ++i)
      v[i] = i*i;
   show("Contents of v: ", v);
   vector<int>::iterator itr;
   // Now, declare reverse iterator to a vector<int>
   vector<int>::reverse_iterator ritr;
   return 0;
}
void show(const char *msg, vector<int> vect) {
   cout << msg;
   for(unsigned i=0; i < vect.size(); ++i)
      cout << vect[i] << " ";
   cout << "\n";
}

Result


Related Tutorials