c ++中的STL映射声明

-3 c++ arrays stl

在编程问题解决方案中,我得到了:

map<int,int>mp[200010];
Run Code Online (Sandbox Code Playgroud)

现在请你解释一下mp [200010]的含义是什么?

Cor*_*mer 6

你有一个200010地图数组,其中数组的每个元素都是一个map<int,int>.mp是变量的名称.