📜  C++ STL中的map ::运算符[]

📅  最后修改于: 2021-05-30 04:13:04             🧑  作者: Mango

映射是关联容器,以映射方式存储元素。每个元素都有一个键值和一个映射值。任何两个映射值都不能具有相同的键值。

map ::运算符[]

该运算符用于引用在运算符内部给定位置处存在的元素。它类似于at()函数,唯一的区别是,当位置不在地图大小的范围内时,at()函数将引发超出范围的异常,而此运算符会导致未定义的行为。

句法 :

mapname[key]
Parameters :
Key value mapped to the element to be fetched.
Returns :
Direct reference to the element at the given key value.

例子:

Input  :  map mymap;
          mymap['a'] = 1;
          mymap['a'];
Output :  1

Input  :  map mymap;
          mymap["abcd"] = 7;
          mymap["abcd"];
Output :  7

错误和异常

1.如果该密钥不存在于地图中,则它将显示未定义的行为。
2.否则,没有异常抛出保证。

// CPP program to illustrate
// Implementation of [] operator
#include 
#include 
#include
using namespace std;
  
int main()
{
    // map declaration
    map mymap;
      
    // mapping integers to strings
    mymap[1] = "Hi";
    mymap[2] = "This";
    mymap[3] = "is";
    mymap[4] = "GeeksForGeeks";
      
    // using operator[] to print string 
    // mapped to integer 4
    cout << mymap[4];
    return 0;
}

输出:

GeeksForGeeks

时间复杂度: O(logn)

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”