c++ - 如果用作映射中的键,如何获取对的第一个和第二个元素?

c++ - How to get first and second element of pair if used as key in map?

当我在 map.For 中使用 pair 作为键时,我试图获取 pair 的第一个和第二个元素 map.For 更好的说明请参阅代码 below.This 是我尝试过的

#include <bits/stdc++.h>
using namespace std;

int main() 
{
// your code goes here
map<pair<int,int>,int>mp;
int n;
cin>>n;
int a[n];
for(int i=0;i<n;++i)cin>>a[i];
int y=0;
for(int i=0;i<n;++i)
{
    mp.insert(make_pair(y,a[i]));
    y=a[i]+1;
}
int m;
cin>>m;
int q[m];
for(int i=0;i<m;++i)cin>>q[i];
for(int i=0;i<m;i++)
{
    int temp=q[i];
    for(map<pair<int,int>,int>::iterator it=mp.begin();it!=mp.end();++it)
    {
        if(((it->first)<=temp)&&((it->second)>=temp))
        cout<<mp->second<<endl;
    }

  }
  return 0;
}

我想获取键的第一个和第二个元素 here.How 我可以这样做吗?

当你迭代你的map时,你可以得到以下项目

std::pair<int, int> key = it->first;
int value = it->second;

因此 keyfirstsecond 值将是

it->first.first;
it->first.second;