set::find是C++ STL中的内置函数,该函数将迭代器返回到在集合容器中搜索的元素。如果找不到该元素,则迭代器将指向集合中最后一个元素之后的位置。
用法:
set_name.find(element)
参数:该函数接受一个强制性参数element ,该元素指定要在集合容器中搜索的元素。
返回值:该函数返回一个迭代器,该迭代器指向在集合容器中搜索的元素。如果找不到该元素,则迭代器将指向集合中最后一个元素之后的位置。
以下示例程序旨在说明上述函数。
// CPP program to demonstrate the
// set::find() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Initialize set
set<int> s;
s.insert(1);
s.insert(4);
s.insert(2);
s.insert(5);
s.insert(3);
// iterator pointing to
// position where 2 is
auto pos = s.find(3);
// prints the set elements
cout << "The set elements after 3 are: ";
for (auto it = pos; it != s.end(); it++)
cout << *it << " ";
return 0;
}
输出:
The set elements after 3 are: 3 4 5
相关用法
- C++ map find()用法及代码示例
- C++ unordered_set find()用法及代码示例
- C++ unordered_multiset find()用法及代码示例
- C++ unordered_multimap find()用法及代码示例
- C++ multiset find()用法及代码示例
- C++ std::find用法及代码示例
- C++ multimap find()用法及代码示例
- C++ unordered_map find用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 set find() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。