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


C++ unordered_set bucket()用法及代码示例


unordered_set::bucket()方法是C++ STL中的内置函数,该函数返回特定元素的存储区编号。也就是说,此函数返回存储在unordered_set容器中的特定元素的存储区编号。

存储桶是unordered_set内部哈希表中的一个存储元素的插槽。

注意:unordered_set中的存储桶从0到n-1编号,其中n是存储桶的总数。


用法

unordered_set_name.bucket(element);

参数:这是必填参数,它指定需要在unordered_set容器中了解其存储桶编号的元素的值。

返回值:此函数返回unordered_set容器中存储值的元素的存储桶的存储桶编号。

以下示例程序旨在说明unordered_set::bucket()函数:

// C++ program to illustrate the 
// unordered_set::bucket() function 
  
#include <iostream> 
#include <unordered_set> 
  
using namespace std; 
  
int main() 
{ 
  
    unordered_set<int> sampleSet; 
  
    // Inserting elements 
    sampleSet.insert(5); 
    sampleSet.insert(10); 
    sampleSet.insert(15); 
    sampleSet.insert(20); 
    sampleSet.insert(25); 
  
    for (auto itr = sampleSet.begin(); itr != sampleSet.end(); itr++) { 
        cout << "The Element " << (*itr) << " is present in the bucket: "
             << sampleSet.bucket(*itr); 
        cout << endl; 
    } 
  
    return 0; 
}
输出:
The Element 25 is present in the bucket: 3
The Element 5 is present in the bucket: 5
The Element 10 is present in the bucket: 10
The Element 15 is present in the bucket: 4
The Element 20 is present in the bucket: 9


相关用法


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