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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。