如何在地图中搜索本身就是一对的钥匙?

时间:2019-04-08 22:02:04

标签: c++

我想检查地图上是否存在钥匙(本身就是一对)。

我是不熟悉Map的新手,无法找到要检查密钥(一对)的函数。

#include<bits/stdc++.h>
using namespace std;
#define  ll long long int
typedef pair<ll,ll> my_key_type;
typedef map<my_key_type,ll> my_map_type;
int  main()
{
    my_map_type ma;
    my_map_type::iterator it;
    ma.insert(make_pair(my_key_type(30,40),6));
    it=ma.find(30,40);
    if(it==ma.end())
    {
        cout<<"not present";
        return 0;
    }
    cout<<"present";
    return 0;   
}                   

我收到以下错误-

no matching function for call to ‘std::map<std::pair<long long int, long long int>, long long int>::find(int, int)’   it=ma.find(30,40);

1 个答案:

答案 0 :(得分:6)

使用时

it=ma.find(30,40);

编译器不会自动将参数转换为一对。您必须明确地做到这一点。

it=ma.find(std::make_pair(30,40));

或更简单的版本

it=ma.find({30,40});