6

次のコードがあるとします。

std::vector< std::pair <int, char> > myVec; 
or 
std::list< std::pair <int, char> > myList; 
/* then ***************/
std::list< std::pair <int, char> >::iterator listIt; 
or 
std::vector< std::pair <int, char> >::iterator vectorIt;

/* No difference between vector and list */

intここで、それらの要素を 1 つだけ検索する必要があります。

vectorIt = std::find_if(myVec.begin(),myVect.end(),make_pair(.....));
                                                   ^^^^^^^^^^^^^^^^^

どうすればできますか?

4

3 に答える 3

15

これはC++11ラムダ式を使用し、value検索したいものを指定します。

std::find_if(container.begin(), container.end(), 
    [&value](std::pair<int, char> const& elem) {
    return elem.first == value;
});

はまたcontainerはのいずれmyVecmyListです。

ラムダ式[&value](...){...}は、一時式と機能的に同等です(パラメーターの引数として「3 + 2」を渡すことができるようint に。コンパイラーによって関数オブジェクト(juanchopanzaの回答にあるものによく似ています)に変換されます。入力する手間が省け、コードがローカライズされた状態に保たれます。

于 2012-08-17T14:54:41.777 に答える
15

Write a unary predicate that takes an std::pair, and returns true if the first element is equal to a given value.

For example:

struct CompareFirst
{
  CompareFirst(int val) : val_(val) {}
  bool operator()(const std::pair<int,char>& elem) const {
    return val_ == elem.first;
  }
  private:
    int val_;
};

Then

// find first element with first == 42
vectorIt = std::find_if(myVec.begin(),myVect.end(), CompareFirst(42));
于 2012-08-17T14:54:22.150 に答える
2
template <class T,class S> struct pair_equal_to : binary_function <T,pair<T,S>,bool> {
  bool operator() (const T& y, const pair<T,S>& x) const
    {
        return x.first==y;
  }
};

必要な int 値を見つけるには、次を使用する必要があります。

int find_me = 1;//chenge the value as you want
vector< pair <int, char> >::iterator it = 
        find_if(myVec.begin(),myVec.end(),bind1st(pair_equal_to<int,char>(),find_me));

例えば ​​:

int main() {
    vector< pair <int, char> > myVec;
    pair<int,char> p1 = make_pair(1,'a');
    pair<int,char> p2 = make_pair(2,'b');
    pair<int,char> p3 = make_pair(1,'c');
    myVec.push_back(p1);
    myVec.push_back(p2);
    myVec.push_back(p3);
    vector< pair <int, char> >::iterator it = find_if(myVec.begin(),myVec.end(),bind1st(pair_equal_to<int,char>(),1));
    if (it == myVec.end()) {
        cout << "not found\n";
    }
    else {
        cout<< "found - first instance is < " << it->first <<"," << it->second << " >";
    }
        return 0;
    }
于 2012-08-17T15:47:24.057 に答える