unordered_map::bucket()是C++中的內置 STL函數,它返回存儲桶編號,其中帶鍵k的元素位於映射中。
用法:
size_type bucket(key)
參數:該函數接受一個強製性參數 key ,該 key 指定要返回其存儲區號的 key 。
返回值:此方法返回一個無符號整數類型,該整數類型表示參數k中傳遞的 key k的存儲區編號。
以下示例程序旨在說明unordered_map::bucket()函數:
// CPP program to demonstrate the
// unordered_map::bucket() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Declaration
unordered_map<string, string> mymap;
// Initilisation
mymap = { { "Australia", "Canberra" },
{ "U.S.", "Washington" },
{ "France", "Paris" } };
// prints the bucket number of the beginning element
auto it = mymap.begin();
// stores the bucket number of the key k
int number = mymap.bucket(it->first);
cout << "The bucket number of key " << it->first
<< " is " << number;
return 0;
}
輸出:
The bucket number of key France is 3
相關用法
- C++ unordered_set bucket()用法及代碼示例
- C++ unordered_multiset bucket()用法及代碼示例
- C++ unordered_multimap bucket()用法及代碼示例
- C++ cin get()用法及代碼示例
注:本文由純淨天空篩選整理自Striver大神的英文原創作品 unordered_map bucket() in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。