convert iterator to cosnt reverse iterator c++ code example

Example: reverse iterator c++

// A reverse_iterator example using vectors

#include <iostream>
#include <vector>

int main() {
	std::vector<int> vec = {1, 2, 3, 4, 5};
  	std::vector<int>::reverse_iterator r_iter;
  
    // rbegin() points to the end of the vector, and rend()
    // points to the front. Use crbegin() and crend() for
  	// the const versions of these interators.
    for (r_iter = vec.rbegin(); r_iter != vec.rend(); r_iter++) {
        std::cout << *r_iter << std::endl;
    }
  	
  	return 0;
}

Tags:

Cpp Example