C++STL 中的 unordered_multiset find() 函数
unordered_multiset::find() 是 C++ STL 中的内置函数,它返回一个迭代器,该迭代器指向具有元素 val 的位置。如果元素不包含元素 val,则返回一个指向容器中最后一个元素之后位置的迭代器。
语法:
unordered_multiset_name.find(val)
参数: 该函数接受一个必填参数 val,其迭代器在此处返回。
返回值: 它返回一个迭代器,该迭代器指向元素 val 的位置。
下面的程序说明上述函数:
程序 1:
// C++ program to illustrate the
// unordered_multiset::find() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// declaration
unordered_multiset<int> sample;
// inserts element
sample.insert(100);
sample.insert(100);
sample.insert(100);
sample.insert(200);
sample.insert(500);
sample.insert(500);
sample.insert(600);
// find the position of 500 and print
auto it = sample.find(500);
if (it != sample.end())
cout << *it << endl;
else
cout << "500 not found\n";
// find the position of 300 and print
it = sample.find(300);
if (it != sample.end())
cout << *it << endl;
else
cout << "300 not found\n";
// find the position of 100 and print
it = sample.find(100);
if (it != sample.end())
cout << *it << endl;
else
cout << "100 not found\n";
return 0;
}
500
300 not found
100
程序 2:
// C++ program to illustrate the
// unordered_multiset::find() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// declaration
unordered_multiset<char> sample;
// inserts element
sample.insert('a');
sample.insert('a');
sample.insert('b');
sample.insert('c');
sample.insert('d');
sample.insert('d');
sample.insert('d');
// find the position of 'a' and print
auto it = sample.find('a');
if (it != sample.end())
cout << *it << endl;
else
cout << "a not found\n";
// find the position of 'z' and print
it = sample.find('z');
if (it != sample.end())
cout << *it << endl;
else
cout << "z not found\n";
return 0;
}
a
z not found