在向量的排序向量中查找特定值的索引范围

时间:2015-02-25 10:49:38

标签: c++ vector stl containers

我有一个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));

但是这只给了我一个向量值的迭代器。什么方法最适合实现这个目标?

谢谢。

1 个答案:

答案 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

仅复制感兴趣的视点