unordered_set :: rehash()是C++ STL中的内置函数,用于将unordered_set容器中的存储桶数设置为给定大小或更大。如果size大于容器的当前大小,则调用rehash。如果它小于当前大小,则该函数对哈希的存储桶计数没有影响。
语法:
unordered_set_name.rehash(size_type n)
参数:该函数接受强制性参数n,该参数指定容器的最小存储桶数。
返回值:该函数不返回任何内容。
下面的程序说明了unordered_set :: rehash()函数:
程序1:
// C++ program to illustrate the
// unordered_set::rehash()
#include
#include
#include
using namespace std;
int main()
{
// declaration
unordered_set us;
// rehashed
us.rehash(9);
// insert elements
us.insert("geeks");
us.insert("for");
us.insert("geeks");
us.insert("users");
for (auto it = us.begin(); it != us.end(); it++) {
cout << *it << " ";
}
cout << "\nThe bucket count is "
<< us.bucket_count();
return 0;
}
输出:
users for geeks
The bucket count is 11
程式2:
// C++ program to illustrate the
// unordered_set::rehash()
#include
#include
#include
using namespace std;
int main()
{
// declaration
unordered_set us;
// rehash the unordered_set
us.rehash(20);
// insert strings
us.insert("geeks");
us.insert("for");
us.insert("geeks");
us.insert("users");
us.insert("are");
us.insert("experts");
us.insert("in");
us.insert("DS");
// prints the elements
for (auto it = us.begin(); it != us.end(); it++) {
cout << *it << " ";
}
cout << "\nThe bucket count is "
<< us.bucket_count();
return 0;
}
输出:
DS in experts are users for geeks
The bucket count is 23
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。