我想std::partial_sort_copy()
一个数组,但使用自定义比较器函数。问题是,这个函数使用被比较的数组单元的值和它们的索引。
为了便于讨论,假设我的comaprison功能类似于
template <typename T>
bool myCompare(size_t lhs_index, const T& lhs, size_t rhs_index, const T& rhs) {
T lhs_compound = lhs * (lhs_index % 2 ? -1 : 1);
T rhs_compound = rhs * (lhs_index % 2 ? -1 : 1);
return (lhs_compound <= rhs_compound);
}
(如果你愿意,我可以让它变得更加人为......)
起初我想过使用一个带有pair<size_t, T>
s的比较器对象 - 但这不起作用,因为这意味着我的输出将是这样的对的数组,我不希望这样。事实上,我需要不实现任何东西 - 所以没有对,或索引或任何此类事物的数组。
我该怎么办?
答案 0 :(得分:1)
这样的事可能会有所帮助 它创建一个索引数组,然后根据比较器(间接到初始数组)对此数组进行排序:
template <typename IT, typename Comp>
struct MyCmp
{
explicit Cmp(const IT it, Comp& comp) : it(it), comp(comp) {}
bool operator (std::size_t lhs, std::size_t rhs) const
{
return comp(lhs, *(it + lhs), rhs, *(it + rhs));
}
const IT it;
Comp comp;
};
template<typename IT, typename IT2, typename Comp>
void mypartialsort(IT begin, IT end, IT2 dbegin, IT2 dend, Comp comp)
{
std::vector<size_t> indexes;
for (size_t i = 0, size = end - begin; i != size; ++i) {
indexes.push_back(i);
}
MyCmp<IT, Comp> mycomp(begin, comp);
const std::size_t min_size = std::min(end - begin, dend - dbegin);
std::partial_sort(v.begin(), v.begin() + d, v.end(), mycomp);
for (std::size_t i = 0; i != min_size; ++i, ++dbegin) {
*dbegin = *(begin + v[i]);
}
}