我有定义项目顺序的向量(0..N-1),例如
{5, 0, 4, 3, 2, 1, 7, 6}
。
我必须对该向量的子集进行排序。因此,对于{0, 1, 2, 5}
,我应该{5, 0, 2, 1}
。
我测试了以下解决方案:
std::lower_bound
子集中找到的项目。第二种解决方案似乎要快得多,尽管需要对子集进行排序。还有更好的解决方案吗?我使用的是C ++ / STL / Qt,但问题可能与语言无关。
答案 0 :(得分:2)
检查此代码: -
#include <iostream>
#include <algorithm>
#include <vector>
struct cmp_subset
{
std::vector<int> vorder;
cmp_subset(const std::vector<int>& order)
{
vorder.resize(order.size());
for (int i=0; i<order.size(); ++i)
vorder.at(order[i]) = i;
}
bool operator()(int lhs, int rhs) const
{
return vorder[lhs] < vorder[rhs];
}
};
int main()
{
std::vector<int> order = {5, 0, 4, 3, 2, 1, 7, 6};
std::vector<int> subset = {0, 1, 2, 5};
for (auto x : subset)
std::cout << x << ' ';
std::cout << '\n';
std::sort(subset.begin(), subset.end(), cmp_subset(order));
for (auto x : subset)
std::cout << x << ' ';
std::cout << '\n';
return 0;
}
代码是从here
复制的