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



描述

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

声明

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

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
unordered_map.htm
广告