描述
它在容器中搜索与 val 等效的元素,如果找到则返回一个迭代器,否则返回一个迭代器到 set::end。
声明
以下是 std::set::find 在各种 C++ 版本中的工作方式。
C++98
iterator find (const value_type& val) const;
C++11
const_iterator find (const value_type& val) const; iterator find (const value_type& val);
返回值
它返回一个迭代器来设置::结束。
异常
如果抛出异常,则容器中没有变化。
时间复杂度
时间复杂度取决于对数。
示例
下面的例子展示了 std::set::find 的用法。
#include <iostream>
#include <set>
int main () {
std::set<int> myset;
std::set<int>::iterator it;
for (int i = 1; i <= 10; i++) myset.insert(i*10);
it = myset.find(40);
myset.erase (it);
myset.erase (myset.find(60));
std::cout << "myset contains:";
for (it = myset.begin(); it!=myset.end(); ++it)
std::cout << ' ' << *it;
std::cout << '\n';
return 0;
}
上述程序将正确编译和执行。
myset contains:10 20 30 50 70 80 90 100
相关用法
- C++ set find()用法及代码示例
- C++ set rbegin()用法及代码示例
- C++ set upper_bound()用法及代码示例
- C++ set crbegin用法及代码示例
- C++ set size用法及代码示例
- C++ set emplace用法及代码示例
- C++ set swap()用法及代码示例
- C++ set size()用法及代码示例
- C++ set lower_bound()用法及代码示例
- C++ set begin用法及代码示例
- C++ set end用法及代码示例
- C++ set erase()用法及代码示例
- C++ set count用法及代码示例
- C++ set end()用法及代码示例
- C++ set cbegin()用法及代码示例
- C++ set key_comp()用法及代码示例
- C++ set equal_range()用法及代码示例
- C++ set emplace_hint用法及代码示例
- C++ set key_comp用法及代码示例
注:本文由纯净天空筛选整理自 C++ Set Library - find Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。