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


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