当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ multimap::cbegin()、multimap::cend()用法及代码示例


  1. multimap::cbegin()是C++ STL中的内置函数,该函数返回一个常量迭代器,该常量迭代器引用多图容器中的第一个元素。由于多图容器按有序方式包含元素,因此cbegin()将指向该元素,根据容器的排序标准,该元素将排在最前面。

    用法:

    multimap_name.cbegin()
    

    参数:该函数不接受任何参数。

    返回值:该函数返回一个常量迭代器,该迭代器引用multimap容器中的第一个元素。


    // C++ program to illustrate 
    // the multimap::cbegin() function 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
      
        // initialize container 
        multimap<int, int> mp; 
      
        // insert elements in random order 
        mp.insert({ 2, 30 }); 
        mp.insert({ 1, 40 }); 
        mp.insert({ 3, 60 }); 
        mp.insert({ 4, 20 }); 
        mp.insert({ 5, 50 }); 
      
        auto ite = mp.cbegin(); 
      
        cout << "The first element is:"; 
        cout << "{" << ite->first << ", "
             << ite->second << "}\n"; 
      
        // prints the elements 
        cout << "\nThe multimap is:\n"; 
        cout << "KEY\tELEMENT\n"; 
        for (auto itr = mp.cbegin(); itr != mp.cend(); ++itr) { 
            cout << itr->first 
                 << '\t' << itr->second << '\n'; 
        } 
        return 0; 
    }
    输出:
    The first element is:{1, 40}
    
    The multimap is:
    KEY    ELEMENT
    1    40
    2    30
    3    60
    4    20
    5    50
    
  2. multimap::cend()是C++ STL中的内置函数,该函数返回一个常量迭代器,该迭代器指向在multimap中最后一个元素之后的理论元素。由于多图容器按有序方式包含元素,因此cend()将根据容器的排序标准指向最后一个元素之后的元素。

    用法:

    multimap_name.cend()
    

    参数:该函数不接受任何参数。

    返回值:该函数返回一个常数迭代器,该迭代器指向在多图中最后一个元素之后的理论元素。

    // C++ program to illustrate 
    // the multimap::cend() function 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
      
        // initialize container 
        multimap<int, int> mp; 
      
        // insert elements in random order 
        mp.insert({ 2, 30 }); 
        mp.insert({ 1, 40 }); 
        mp.insert({ 3, 60 }); 
        mp.insert({ 4, 20 }); 
        mp.insert({ 5, 50 }); 
      
        // print the elements 
        cout << "\nThe multimap is:\n"; 
        cout << "KEY\tELEMENT\n"; 
        for (auto itr = mp.cbegin(); itr != mp.cend(); ++itr) { 
            cout << itr->first 
                 << '\t' << itr->second << '\n'; 
        } 
        return 0; 
    }
    输出:
    The multimap is:
    KEY    ELEMENT
    1    40
    2    30
    3    60
    4    20
    5    50
    


相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 multimap::cbegin() and multimap::cend() in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。