对谓词使用std::find

using std::find with a predicate

本文关键字:find std 谓词      更新时间:2023-10-16

我想使用std::find函数以及谓词(不确定我是否使用正确的单词)。下面是代码

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
class foo {
public:
  typedef pair< int, vector<int> > way;
  typedef pair< int, int > index;
  typedef pair< index, vector<way> > entry;
  vector< entry > table;
  void bar() 
  {
     vector<int> v1;
     v1.push_back(1);
     v1.push_back(2);
     way w = make_pair( 1, v1 );
     vector<way> v2;
     v2.push_back(w);
     index id = make_pair( 10, 20 );
     entry en = make_pair( id, v2 );
     table.push_back( en );
  }
  void insert()
  {
     index new_id = make_pair( 10, 20 );
     if ( find(table.begin(), table.end(), new_id) != table.end() ) {
        // index matched in the table
        // then I will push back a new pair (way)
        // to the second part of the entry
     }
  }
};
int main()
{
  foo f;
  f.bar();
  f.insert();
  return 0; 
}

可以看到,find()应该根据每个条目中的第一个元素搜索table。现在,它说==没有重载来比较pair

你想要std::find_if:

...
if(find_if(table.begin(), table.end(), [&new_id](const entry &arg) { 
                                           return arg.first == new_id; }) != ...)

EDIT:如果你没有c++ 11(因此没有lambda),你必须创建一个自定义函子(函数或函数对象)来比较entry::first和搜索的index:

struct index_equal : std::unary_function<entry,bool>
{
    index_equal(const index &idx) : idx_(idx) {}
    bool operator()(const entry &arg) const { return arg.first == idx_; }
    const index &idx_;
};
...
if(find_if(table.begin(), table.end(), index_equal(new_id)) != ...)

EDIT:由于index只是一对int,您也可以通过值而不是const引用来捕获它,以保持代码更清晰,更简洁,但这也无关紧要。

在c++ 11中,还可以使用std::any_of

if (std::any_of(table.cbegin(), table.cend(),
                [&new_id](const entry &arg) { return arg.first == new_id; }))