本文介绍了将向量排序的条件多于一个的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在其他帖子中问过有关:
I asked in other post about: my_old_post
但是现在我需要更复杂的条件来对向量进行排序.
But now I need more complex condition to sort my vector.
推荐答案
std::vector<CartesianPoint>v{...};//place your values here
//First, sort by Z
std::sort(v.begin(), v.end(), [](const auto& p1, const auto& p2){return p1.z < p2.z;});
//Define a compare-by-y lambda
auto yComp = [](const auto& p1, const auto& p2){return p1.y < p2.y;};
//Use yComp for first 4 v[]
std::sort(v.begin(), v.begin() + 4, yComp);
//And for the second
std::sort(v.begin() + 4, v.begin() + 8, yComp);
如果在按y
重新排序时需要保存z
订单,则yComp = [](const auto& p1, const auto& p2) {return p1.y < p2.y && p1.z <= p2.z;};
If you need to save z
order while reordering by y
, then yComp = [](const auto& p1, const auto& p2) {return p1.y < p2.y && p1.z <= p2.z;};
这篇关于将向量排序的条件多于一个的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!