我正在编写一个代码来解决以下问题:给定一组数字x[0]
, x[1]
, ..., x[N-1]
,找到使它们按升序排序的排列。换句话说,我想在 {0,2,...,N-1} 上找到一个排列,例如i[0]
, i[1]
, ...,i[N-1]
这样x[i[0]] <= x[i[1]] <= ... <= x[i[N-1]]
。
为此,我将x
向量和索引向量i
(最初用 填充i[j] = j
)存储为类的私有成员。我还定义了一个私有方法
bool MyClass::compare(size_t s, size_t t) {
return (x[s] < x[t]);
}
现在,我会调用std::sort
如下
std::sort(i.begin(), i.end(), compare);
我希望得到想要的结果。但是代码无法编译,我收到以下错误:
error: no matching function for call to ‘sort(std::vector<long unsigned int>::iterator, std::vector<long unsigned int>::iterator, <unresolved overloaded function type>)’
我必须正确地完成所有事情以及std::sort
提及的文档,我可以将函数作为比较运算符传递给std::sort
(http://www.cplusplus.com/reference/algorithm/sort/)
感谢您提前提供的所有帮助。