set::find
傳回迭代器,其表示 set 中索引鍵等於指定索引鍵的元素的位置。
iterator find(const Key& key); const_iterator find(const Key& key) const;
參數
- key
要以所搜尋之 set 中元素的排序鍵比對的索引鍵值。
傳回值
迭代器,表示具有指定索引鍵的元素位置,或者,如果沒有找到索引鍵的符合項,表示 set 中最後一個元素之後的位置 (set::end())。
備註
成員函式會傳回迭代器,其表示 set 中排序鍵 (在二元述詞下根據較少的比較性關聯引發排序) 等於引數 key 的元素。
如果 find 的傳回值指派給 const_iterator,則不能修改 set 物件。 如果 find 的傳回值指派給 iterator,則可以修改 set 物件。
範例
// compile with: /EHsc /W4 /MTd
#include <set>
#include <iostream>
#include <vector>
#include <string>
using namespace std;
template <typename T> void print_elem(const T& t) {
cout << "(" << t << ") ";
}
template <typename T> void print_collection(const T& t) {
cout << t.size() << " elements: ";
for (const auto& p : t) {
print_elem(p);
}
cout << endl;
}
template <typename C, class T> void findit(const C& c, T val) {
cout << "Trying find() on value " << val << endl;
auto result = c.find(val);
if (result != c.end()) {
cout << "Element found: "; print_elem(*result); cout << endl;
} else {
cout << "Element not found." << endl;
}
}
int main()
{
set<int> s1({ 40, 45 });
cout << "The starting set s1 is: " << endl;
print_collection(s1);
vector<int> v;
v.push_back(43);
v.push_back(41);
v.push_back(46);
v.push_back(42);
v.push_back(44);
v.push_back(44); // attempt a duplicate
cout << "Inserting the following vector data into s1: " << endl;
print_collection(v);
s1.insert(v.begin(), v.end());
cout << "The modified set s1 is: " << endl;
print_collection(s1);
cout << endl;
findit(s1, 45);
findit(s1, 6);
}
輸出
需求
標頭:<set>
命名空間: std