C++ Unordered_map 库 - o​​perator[] 函数


描述

C++ 函数std::unordered_map::operator[]如果键k与容器中的元素匹配,则方法返回对该元素的引用。

宣言

以下是 std::unordered_map::operator[] 函数形式 std::unordered_map 标头的声明。

C++11

mapped_type& operator[](key_type&& k);

参数

k - 访问其映射值的元素的键。

返回值

返回对与键k关联的元素的引用。

时间复杂度

常数,即平均情况下的 O(1)。

线性,即最坏情况下的 O(n)。

例子

以下示例显示了 std::unordered_map::operator[] 函数的用法。

#include <iostream>
#include <unordered_map>

using namespace std;

int main(void) {
   unordered_map<char, int> um = {
            {'a', 1},
            {'b', 2},
            {'c', 3},
            {'d', 4},
            {'e', 5}
            };

   cout << "Unordered map contains following elements: " << endl;

   cout << "um['a'] = " << move(um['a']) << endl;
   cout << "um['b'] = " << move(um['b']) << endl;
   cout << "um['c'] = " << move(um['c']) << endl;
   cout << "um['d'] = " << move(um['d']) << endl;
   cout << "um['e'] = " << move(um['e']) << endl;

   return 0;
}

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

Unordered map contains following elements: 
um['a'] = 1
um['b'] = 2
um['c'] = 3
um['d'] = 4
um['e'] = 5
无序_map.htm