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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。