Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Latest commit

History

History
38 lines (29 loc) 路 1.11 KB

crend.md

File metadata and controls

38 lines (29 loc) 路 1.11 KB

crend

Description : The function returns a constant reverse iterator pointing to the theoretical element before the first element in the map. This crend() will point to the element theoretically before the first element according to the container鈥檚 sorting criterion. This function does not accept any parameter.

Example :

// C++ program to Demonstrate map::crend() function 
#include <iostream>
#include <map>
using namespace std; 
  
int main() { 

    // initialize container 
    std::map<int, int> mp; 
  
    // insert elements in random order 
    mp.insert({ 1, 10 }); 
    mp.insert({ 3, 20 }); 
    mp.insert({ 2, 30 }); 
    mp.insert({ 4, 40 }); 
    mp.insert({ 6, 50 }); 
    mp.insert({ 5, 60 }); 
  
    // print the list in reverse order using itr iterator till itr != mp.crend()
    std::cout << "\nThe map in reverse order is : \n"; 
    std::cout << "KEY\tELEMENT\n"; 
    for (auto itr = mp.crbegin(); itr != mp.crend(); ++itr) { 
        std::cout << itr->first 
             << '\t' << itr->second << '\n'; 
    } 
    
    return 0; 
} 

Run Code