程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 調用STL的sort,出錯提示invalid <

調用STL的sort,出錯提示invalid <

編輯:C++入門知識

  今天調用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; 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved