unordered_multiset的reserve()函数将容器中的存储桶数(bucket_count)设置为最适合包含至少n个元素的存储桶。
如果n大于当前的bucket_count乘以max_load_factor,则增加容器的bucket_count并强制进行重新哈希处理。
如果n小于该值,则该函数可能无效。
句法:
void reserve( size_type n );
其中size_type是无符号整数类型。
参数:此方法接受强制参数n ,该参数n是请求的最小容量元素数。
返回值:不返回任何值。
以下是说明reserve()方法的程序:
范例1:
#include
#include
using namespace std;
int main()
{
unordered_multiset j;
// container invoked
// it reverse the values
j.reserve(5);
// set the values of the container
j.insert(5);
j.insert(6);
j.insert(7);
cout << "The values in unordered_multiset :";
for (const int& x : j)
cout << " " << x;
return 0;
}
输出:
The values in unordered_multiset : 7 6 5
范例2:
#include
#include
using namespace std;
int main()
{
unordered_multiset j;
// container invoked
// it reverse the values
j.reserve(5);
// set the values of the container
j.insert("Geeks");
j.insert("forGeeks");
j.insert("GeeksforGeeks");
cout << "The values in unordered_multiset :";
for (const string& x : j)
cout << " " << x;
return 0;
}
输出:
The values in unordered_multiset : GeeksforGeeks forGeeks Geeks
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。