C++ 无序映射库 - operator[] 函数



描述

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

声明

以下是来自 std::unordered_map 头文件的 std::unordered_map::operator[] 函数声明。

C++11

mapped_type& operator[](const 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'] = " << um['a'] << endl;
   cout << "um['b'] = " << um['b'] << endl;
   cout << "um['c'] = " << um['c'] << endl;
   cout << "um['d'] = " << um['d'] << endl;
   cout << "um['e'] = " << 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
unordered_map.htm
广告