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


C++ unordered_map begin()用法及代码示例


unordered_map::begin()是C++ STL中的内置函数,该函数返回指向unordered_map容器或其任何存储桶中第一个元素的迭代器。

  1. unordered_map容器中第一个元素的语法:
    unordered_map.begin()
    

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

    返回值:该函数返回指向unordered_map容器中第一个元素的迭代器。


    注意:在无序图中,没有特定元素被视为第一个元素。

    以下示例程序旨在说明上述函数。

    // CPP program to demonstrate the 
    // unordered_map::begin() function 
    // when first element of the container 
    // is to be returned as iterator 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
      
        // Declaration 
        unordered_map<std::string, std::string> mymap; 
      
        // Initilisation 
        mymap = { { "Australia", "Canberra" }, 
                  { "U.S.", "Washington" }, 
                  { "France", "Paris" } }; 
      
        // Iterator pointing to the first element 
        // in the unordered map 
        auto it = mymap.begin(); 
      
        // Prints the elements of the first element in map 
        cout << it->first << " " << it->second; 
      
        return 0; 
    }
    输出:
    France Paris
    
  2. unordered_map存储桶中第一个元素的语法:
    unordered_map.begin( n )
    

    参数:该函数接受一个强制性参数n,该参数指定要返回其第一个元素的迭代器的存储区编号。

    返回值:该函数返回指向n-th存储桶中第一个元素的迭代器。

    以下示例程序旨在说明上述函数。

    // CPP program to demonstrate the 
    // unordered_map::begin() function 
    // when first element of n-th container 
    // is to be returned as iterator 
    #include <bits/stdc++.h> 
    using namespace std; 
      
    int main() 
    { 
      
        // Declaration 
        unordered_map<std::string, std::string> mymap; 
      
        // Initilisation 
        mymap = { { "Australia", "Canberra" },  
                { "U.S.", "Washington" }, { "France", "Paris" } }; 
      
        // Iterator pointing to the first element 
        // in the n-th bucket 
        auto it = mymap.begin(0); 
      
        // Prints the elements of the n-th bucket 
        cout << it->first << " " << it->second; 
      
        return 0; 
    }
    输出:
    U.S. Washington
    


相关用法


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