multimap::find

返回一个迭代器,此迭代器引用多重映射当中具有与指定键等效的键的元素的第一个位置。

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

参数

  • key
    要搜索的多重映射中的元素的排序键匹配的键值。

返回值

引用具有指定键的元素的位置的迭代器,如果找不到具有这个键的元素,则引用这个多重映射中 (multimap::end()) 最后一个元素后面的位置。

备注

成员函数返回一个迭代器,它引用多重映射中其排序键与二元谓词下的参数键等效的元素,该谓词基于小于比较关系进行排序。

如果 find 的返回值赋给 const_iterator,则无法修改多重映射对象。 如果 find 的返回值赋给 iterator,则可以修改多重映射对象。

示例

// compile with: /EHsc /W4 /MTd
#include <map>
#include <iostream>
#include <vector>
#include <string>
#include <utility>  // make_pair()

using namespace std;

template <typename A, typename B> void print_elem(const pair<A, B>& p) {
    cout << "(" << p.first << ", " << p.second << ") ";
}

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()
{
    multimap<int, string> m1({ { 40, "Zr" }, { 45, "Rh" } });
    cout << "The starting multimap m1 is (key, value):" << endl;
    print_collection(m1);

    vector<pair<int, string>> v;
    v.push_back(make_pair(43, "Tc"));
    v.push_back(make_pair(41, "Nb"));
    v.push_back(make_pair(46, "Pd"));
    v.push_back(make_pair(42, "Mo"));
    v.push_back(make_pair(44, "Ru"));
    v.push_back(make_pair(44, "Ru")); // attempt a duplicate

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

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

    cout << "The modified multimap m1 is (key, value):" << endl;
    print_collection(m1);
    cout << endl;
    findit(m1, 45);
    findit(m1, 6);
}

输出

  

要求

标头:<map>

命名空间: std

请参见

参考

multimap 类

标准模板库