C++ 无序映射库 - unordered_map() 函数



描述

C++ 函数std::unordered_map::unordered_map() 构造一个空的无序映射,其中包含零个元素。

声明

以下是来自 std::unordered_map 头文件的 std::unordered_map::unordered_map() 函数的声明。

C++11

explicit unordered_map(size_type n = /* implementation defined */,
                       const hasher& hf = hasher(),
                       const key_equal& eql = key_equal(),
                       const allocator_type& alloc = allocator_type()
                      );

参数

  • n − 初始桶的最大数量。

  • hf − 要使用的哈希函数。

  • eql − 比较函数对象,如果提供的两个容器对象被认为相等,则返回 true。

  • alloc − 用于此容器所有内存分配的分配器。

返回值

构造函数不返回值。

时间复杂度

常数,即 O(1)

示例

以下示例演示了 std::unordered_map::unordered_map() 函数的使用。

#include <iostream>
#include <unordered_map>

using namespace std;

int main(void) {
   unordered_map<char, int> um;

   cout << "Size of unordered_map = " << um.size() << endl;

   return 0;
}

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

Size of unordered_map = 0
unordered_map.htm
广告