C++ Unordered_set 库 - rehash


描述

用于设置容器中桶的数量为n或更多。

宣言

以下是 std::unordered_set::rehash 的声明。

C++11

void rehash ( size_type n );

参数

n − n 是桶的最小数量。

返回值

没有任何

例外情况

如果任何元素比较对象抛出异常,则抛出异常。

请注意,无效参数会导致未定义的行为。

时间复杂度

恒定时间。

例子

以下示例显示了 std::unordered_set::max_load_factor 的用法。

#include <iostream>
#include <string>
#include <unordered_set>

int main () {
   std::unordered_set<std::string> myset;

   myset.rehash(12);

   myset.insert("android");
   myset.insert("java");
   myset.insert("html");
   myset.insert("css");
   myset.insert("javascript");

   std::cout << "current bucket_count: " << myset.bucket_count() << std::endl;

   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果 -

current bucket_count: 13
无序集.htm