Visual Studio sort函數出現“invalid operator<”原因分析

來源:互聯網
上載者:User

標籤:

下午使用sort時遇到一個“invalid operator<”的問題,具體資訊參見

 

然後自己就比較納悶了,因為這種情況一般出現在使用預設比較子的情況下,即:

template <class RandomAccessIterator>  void sort (RandomAccessIterator first, RandomAccessIterator last);

但是自己明明使用的是重載函數的第二種函數,即:

template <class RandomAccessIterator, class Compare>  void sort (RandomAccessIterator first, RandomAccessIterator last, Compare comp);

後來通過查詢網上資料,自己發現問題的原因是VC對於比較函數會進行strict weak ordering確認。(這個剛查到還有點驚訝)

直接摘抄官方網站中解釋:

Results:

It works fine in Visbual C++ 2002 and Visual C++ 2003.
It throws and assertion failed error, "Expression: invalid operator < " in Visual C++  2005 and Visual C++ /2008.

Cause:

The STL algorithms for stable_sort() and sort() require the binary predicate to be strict weak ordering.
For example:
· Strict: pred(X, X) is always false.
· Weak: If !pred(X, Y) && !pred(Y, X), X==Y.
· Ordering: If pred(X, Y) && pred(Y, Z), then pred(X, Z).

對比自己的代碼,發現問題出在pred(X, X) = true,那麼解決辦法就產生了(<=替換成<)。

最後附上自己初始代碼中的比較函數

// 比較兩條邊的權重bool compare_edge( const Edge & e1, const Edge & e2 ){    return e1.weight <= e2.weight;}

Visual Studio sort函數出現“invalid operator<”原因分析

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.