我有一个x,y,z值的排序std::vector<std::vector<double>>
,如下所示,
0.0, 0.0, 0.0
0.0, 0.0, 0.1
0.0, 0.0, 0.2
0.0, 0.1, 0.0
0.0, 0.2, 0.1
0.0, 0.2, 0.3
我想找到特定x和y值的所有z值, ex-z值为0.0,0.0,应该返回
0.0, 0.0, 0.0
0.0, 0.0, 0.1
0.0, 0.0, 0.2
我尝试使用
struct MatchDouble
{
MatchDouble(double _x,double _y) : x(_x), y(_y) {}
bool operator()(std::vector<double> &n)
{
return fabs(x - n[0]) < FLT_EPSILON && fabs(y - n[1]) < FLT_EPSILON;
}
private:
double x, y ;
};
it = find_if(allpoints.begin(), allpoints.end(),MatchDouble(0.0,0.0));
但是这只给了我一个向量值的迭代器。什么方法最适合实现这个目标?
谢谢。
答案 0 :(得分:2)
std::vector<std::vector<double>> ret;
std::copy_if(allpoints.begin(), allpoints.end(), std::back_inserter(ret), MatchDouble(0.0,0.0));
return ret;
这会创建与vector
相同类型的新allpoints
视频,并使用copy_if