在您的程式碼中,您嘗試指定一個自訂比較器函數來對std 中的元素進行排序::使用字典順序而不是數字順序設定。但是,錯誤訊息表示您的自訂比較器的聲明中存在類型不符錯誤。
出現此問題的原因是您將 lex_compare 宣告為帶有兩個傳回布林值的 int64_t 參數的函數。然而, std::set 的模板需要一個實作 std::less 的比較器。模板。 std::less是一個具有以下簽章的函式物件:
template <typename T> struct less { bool operator()(const T& a, const T& b) const; };
要解決此問題,您需要實作 lex_compare 以符合 std::less ;簽章。以下是程式碼的修改:
struct lex_compare { bool operator()(const int64_t& a, const int64_t& b) const { stringstream s1, s2; s1 << a; s2 << b; return s1.str() < s2.str(); } }; std::set<int64_t, lex_compare> s;
現在,lex_compare 結構實作了operator() 函數,該函數接受兩個int64_t 參數並傳回一個布林值,該值與std::less 的簽名相匹配。 。透過在 std::set 的定義中指定此自訂比較器,您可以修改集合的排序行為以按字典順序對元素進行排序。
以上是為什麼我的自訂 `std::set` 比較器會導致類型不符合錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!