0

我正在尝试使用这些函数找到我的向量(可能的向量)的上限和下限。结构数据包含 3 个字符串,我使用字符串日期进行比较。

bool myCompare(Data &a, Data &b) {
      return (a.date == b.date);
}

#include <algorithm>

     std::vector<Data>::iterator iterl, iteru;
     sort(possible.begin(), possible.end(), compare);
     iterl = std::lower_bound(possible.begin(), possible.end(), struct1, myCompare);
     iteru = std::upper_bound(possible.begin(), possible.end(), struct2, myCompare);

但是这样做,编译器会显示以下消息:

Main.cpp:95:18: note: in instantiation of function template specialization 'std::__1::upper_bound<std::__1::__wrap_iter<data *>,
data, bool (*)(data &, data &)>' requested here
iteru = std::upper_bound(possible.begin(), possible.end(), struct2, myCompare);

使用这些功能的正确方法是什么?

4

2 回答 2

1

比较对象的签名是bool cmp(const Type1 &a, const Type2 &b);,您需要添加const到 的参数中myCompare

于 2014-04-01T08:28:21.163 回答
1

也许您能做的最好的事情是为 Date 定义 operator< 并且不要明确使用带有算法的谓词

bool operator<(const Data& lhs, const Data& rhs)
{
    return lhs.date < rhs.date;
}

std::vector<Data>::iterator iterl, iteru;
sort(possible.begin(), possible.end());
iterl = std::lower_bound(possible.begin(), possible.end(), data1);
iteru = std::upper_bound(possible.begin(), possible.end(), data2);
于 2014-04-01T08:32:36.683 回答