multiset::find

指定したキーと等価のキーを持つ、multiset 内の要素の位置を参照する反復子を返します。

iterator find(const Key& key);  const_iterator find(const Key& key) const; 

パラメーター

  • key
    検索対象の multiset 内の要素の並べ替えキーと照合するキー値。

戻り値

指定したキーを持つ要素の位置を参照する反復子。キーの一致が検出されない場合は、multiset 内の最後の要素の次の位置 (multiset::end())。

解説

このメンバー関数は、小なり比較関係に基づいて順序を推論する二項述語に即して、キーが引数 key と等価である multiset 内の要素を参照する反復子を返します。

find の戻り値が const_iterator に割り当てられている場合、multiset オブジェクトは変更できません。 find の戻り値が iterator に割り当てられている場合、multiset オブジェクトを変更できます。

使用例

// compile with: /EHsc /W4 /MTd
#include <set>
#include <iostream>
#include <vector>
#include <string>

using namespace std;

template <typename T> void print_elem(const T& t) {
    cout << "(" << t << ") ";
}

template <typename T> void print_collection(const T& t) {
    cout << t.size() << " elements: ";

    for (const auto& p : t) {
        print_elem(p);
    }
    cout << endl;
}

template <typename C, class T> void findit(const C& c, T val) {
    cout << "Trying find() on value " << val << endl;
    auto result = c.find(val);
    if (result != c.end()) {
        cout << "Element found: "; print_elem(*result); cout << endl;
    } else {
        cout << "Element not found." << endl;
    }
}

int main()
{
    multiset<int> s1({ 40, 45 });
    cout << "The starting multiset s1 is: " << endl;
    print_collection(s1);

    vector<int> v;
    v.push_back(43);
    v.push_back(41);
    v.push_back(46);
    v.push_back(42);
    v.push_back(44);
    v.push_back(44); // attempt a duplicate

    cout << "Inserting the following vector data into s1: " << endl;
    print_collection(v);

    s1.insert(v.begin(), v.end());

    cout << "The modified multiset s1 is: " << endl;
    print_collection(s1);
    cout << endl;
    findit(s1, 45);
    findit(s1, 6);
}

出力

  

必要条件

ヘッダー: <set>

名前空間: std

参照

関連項目

multiset クラス

標準テンプレート ライブラリ