unordered_map::begin()是C++ STL中的內置函數,該函數返回指向unordered_map容器或其任何存儲桶中第一個元素的迭代器。
- 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
- 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
相關用法
- C++ map::begin()、end()用法及代碼示例
- C++ set::begin()、set::end()用法及代碼示例
- C++ valarray begin()用法及代碼示例
- C++ multiset begin()、end()用法及代碼示例
- C++ match_results begin()、end()用法及代碼示例
- C++ unordered_multiset begin()用法及代碼示例
- C++ unordered_set begin()用法及代碼示例
- C++ unordered_multimap begin()、end()用法及代碼示例
- C++ array::begin()、array::end()用法及代碼示例
- C++ forward_list::begin()、forward_list::end()用法及代碼示例
- C++ list::begin()、list::end()用法及代碼示例
- C++ vector::begin()、vector::end()用法及代碼示例
- C++ multimap::begin()、multimap::end()用法及代碼示例
注:本文由純淨天空篩選整理自Striver大神的英文原創作品 unordered_map begin() in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。