今天調用STL的sort函數,結果一直出錯說 invalid < ,網上找了很久都沒有找到相關解答,弄了許久終於弄明白為啥。。舉個例子如下,注意下面的比較函數ComparePoint,當要比較的兩個元素相等的時候,返回true:
[cpp]
class TrajPoint
{
public:
double distance;
int edgeId;
};
bool ComparePoint(TrajPoint a,TrajPoint b)
{
if(a.distance<b.distance)
return true;
if(a.distance==b.distance)
return true;
return false;
}
int main()
{
...........
sort(vec.begin(),vec.end(),ComparePoint);
............
}
原來是vs2008和vs2010後都是嚴格比較,相等的兩個元素,一定要返回false,可以看到STL的源碼:
[cpp]
template<class _Pr, class _Ty1, class _Ty2> inline
bool _Debug_lt_pred(_Pr _Pred,
_Ty1& _Left, _Ty2& _Right,
_Dbfile_t _File, _Dbline_t _Line)
{ // test if _Pred(_Left, _Right) and _Pred is strict weak ordering
if (!_Pred(_Left, _Right))
return (false);
<strong>else if (_Pred(_Right, _Left))
_DEBUG_ERROR2("invalid operator<", _File, _Line);</strong>
return (true);
}
如果left和right都一樣,STL就會報錯。。所以只能修改下自己的代碼,當相等的時候,就返回false了。問題解決。 www.2cto.com
[cpp]
bool ComparePoint(TrajPoint a,TrajPoint b)
{
if(a.distance<b.distance)
return true;
return false;
}