我在codeblocks上编译以下代码,我得到以下错误声明
C:\ Program Files(x86)\ CodeBlocks \ MinGW \ lib \ gcc \ mingw32 \ 4.9.2 \ include \ c ++ \ bits \ predefined_ops.h | 191 | error:不匹配'运算符== ' (操作数类型是' std :: pair'和' const int')
头文件predefined_ops.h
中也会显示错误:
template<typename _Iterator>
bool
operator()(_Iterator __it)
{ return *__it == _M_value; }//error
};
这是我正在编译的代码
#include <bits/stdc++.h>
using namespace std;
class Soham
{
int *a,n;
map<int,int> m;
public:
Soham(int x);
void search1(int,int,int,int);
};
Soham::Soham(int x)
{
n=x;
a=new int[n];
for(int i=0;i<n;i++)
cin>>a[i];
for(int i=0;i<n;i++)
{
for(int j=i+1;j<n;j++)
{
if(abs(a[i]-a[j])<=1)
{
search1(a[i],a[j],i,j);
}
}
}
map<int,int> ::iterator it1;
for(it1=m.begin();it1!=m.end();it1++)
{
cout<<it1->first<<"-->"<<it1->second<<endl;
}
}
void Soham::search1(int x,int y,int i1,int j1)
{
if(m.empty())
{
m.insert(std::pair<int,int>(x,i1));
m.insert(std::pair<int,int>(y,j1));
}
else
{
map<int,int>::iterator it,it1;
it=find(m.begin(),m.end(),x);
it1=find(m.begin(),m.end(),y);
if(it!=m.end()|| it1!=m.end())
{
if (it!=m.end() && it->second!=i1)//chance of error
{
m.insert(std::pair<int,int>(it->first,i1));
}
if(it1!=m.end() && it1->second!=j1)//chance of error
{
m.insert(std::pair<int,int>(it1->first,j1));
}
}
//find failed to find element in the map how to show this particular condition
else //error
{
if(it!=m.end())
{
m.insert(std::pair<int,int>(x,i1));
}
if(it1!=m.end())
{
m.insert(std::pair<int,int>(y,j1));
}
}
}
}
int main()
{
int n;
cin>>n;
Soham a(n);
return 0;
}
根据错误声明,我使用==运算符进行无效比较,但我得不到它 这是在下列情况下很可能发生错误的地方
if (it!=m.end() && it->second!=i1)
if(it1!=m.end() && it1->second!=j1)
在第二次检查中,我正在检查该对的第二个元素(it-&gt; second),其类型为int,带有整数变量i1,那么为什么使用==运算符会发生错误。我可能以错误的方式理解错误,因此解释了我的理解,如果不是这样的话。什么产生错误以及如何纠正错误?
答案 0 :(得分:0)
更改以下行,它将运行
//it=find(m.begin(),m.end(),x);
it = m.find(x);
//it1=find(m.begin(),m.end(),y);
it1 = m.find(y);
基本上你必须使用find
成员函数而不是
find
算法。