當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ map cbegin()、cend()用法及代碼示例


  1. map::cbegin()是C++ STL中的內置函數,該函數返回引用映射容器中第一個元素的常量迭代器。由於Map容器按有序方式包含元素,因此cbegin()將指向該元素,根據容器的排序標準,該元素將排在最前麵。

    用法:

    map_name.cbegin()
    

    參數:該函數不接受任何參數。

    返回值:該函數返回引用映射容器中第一個元素的常量迭代器。


    // C++ program to illustrate 
    // the map::cbegin() function 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
      
        // initialize container 
        map<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 map 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 map is:
    KEY    ELEMENT
    1    40
    2    30
    3    60
    4    20
    5    50
    
  2. map::cend()是C++ STL中的內置函數,該函數返回一個常量迭代器,該迭代器指向在多圖中最後一個元素之後的理論元素。由於Map容器按有序方式包含元素,因此cend()將根據容器的排序標準指向最後一個元素之後的元素。

    用法:

    map_name.cend()
    

    參數:該函數不接受任何參數。

    返回值:該函數返回一個常量迭代器,該迭代器指向映射中最後一個元素之後的理論元素。

    // C++ program to illustrate 
    // the map::cend() function 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
      
        // initialize container 
        map<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 map 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 map is:
    KEY    ELEMENT
    1    40
    2    30
    3    60
    4    20
    5    50
    


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 map cbegin() and cend() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。