unordered_set :: bucket()方法是C++ STL中的内置函数,该函数返回特定元素的存储区编号。也就是说,此函数返回存储在unordered_set容器中特定元素的存储桶编号。
铲斗处于unordered_set的内部散列表的狭槽,其中元素被存储。
注意:unordered_set中的存储桶编号从0到n-1,其中n是存储桶的总数。
语法:
unordered_set_name.bucket(element);
参数:这是必填参数,用于指定需要在unordered_set容器中了解其桶号的元素的值。
返回值:该函数返回存储有value元素的元素unordered_set容器中的存储桶的存储桶编号。
下面的程序说明了unordered_set :: bucket()函数:
// C++ program to illustrate the
// unordered_set::bucket() function
#include
#include
using namespace std;
int main()
{
unordered_set 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
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。