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


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++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。