multiset :: find()是C++ STL中的内置函数,该函数返回一个迭代器,该迭代器指向在多集容器中搜索的元素的lower_bound。如果找不到该元素,则迭代器指向该集合中最后一个元素之后的位置。
句法:
multiset_name.find(element)
参数:函数接受一个强制性参数元素,该元素指定要在多集容器中搜索的元素。
返回值:该函数返回一个迭代器,该迭代器指向在多集容器中搜索的元素。如果未找到该元素,则迭代器将指向多重集中最后一个元素之后的位置。
下面的程序说明了上述函数。
程序1:
// CPP program to demonstrate the
// multiset::find() function
#include
using namespace std;
int main()
{
// Initialize multiset
multiset s;
s.insert(1);
s.insert(4);
s.insert(2);
s.insert(5);
s.insert(3);
s.insert(3);
s.insert(3);
s.insert(5);
cout << "The set elements are: ";
for (auto it = s.begin(); it != s.end(); it++)
cout << *it << " ";
// iterator pointing to
// position where 2 is
auto pos = s.find(3);
// prints the set elements
cout << "\nThe set elements after 3 are: ";
for (auto it = pos; it != s.end(); it++)
cout << *it << " ";
return 0;
}
输出:
The set elements are: 1 2 3 3 3 4 5 5
The set elements after 3 are: 3 3 3 4 5 5
程式2:
// CPP program to demonstrate the
// multiset::find() function
#include
using namespace std;
int main()
{
// Initialize multiset
multiset s;
s.insert('a');
s.insert('a');
s.insert('a');
s.insert('b');
s.insert('c');
s.insert('a');
s.insert('a');
s.insert('c');
cout << "The set elements are: ";
for (auto it = s.begin(); it != s.end(); it++)
cout << *it << " ";
// iterator pointing to
// position where 2 is
auto pos = s.find('b');
// prints the set elements
cout << "\nThe set elements after b are: ";
for (auto it = pos; it != s.end(); it++)
cout << *it << " ";
return 0;
}
输出:
The set elements are: a a a a a b c c
The set elements after b are: b c c
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。