multiset::find(是C++ STL中的內置函數,該函數返回指向在多集容器中搜索的元素的lower_bound的迭代器。如果未找到該元素,則迭代器指向該集合中最後一個元素之後的位置。
用法:
multiset_name.find(element)
參數:該函數接受一個強製性參數element ,該元素指定要在多集容器中搜索的元素。
返回值:該函數返回一個迭代器,該迭代器指向在多集容器中搜索的元素。如果未找到該元素,則迭代器將指向多重集中最後一個元素之後的位置。
以下示例程序旨在說明上述函數。
示例1:
// CPP program to demonstrate the
// multiset::find() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Initialize multiset
multiset<int> 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 <bits/stdc++.h>
using namespace std;
int main()
{
// Initialize multiset
multiset<char> 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++ multiset clear()用法及代碼示例
- C++ multiset empty()用法及代碼示例
- C++ multiset get_allocator()用法及代碼示例
- C++ multiset key_comp()用法及代碼示例
- C++ multiset insert()用法及代碼示例
- C++ multiset equal_range()用法及代碼示例
- C++ multiset emplace_hint()用法及代碼示例
- C++ multiset count()用法及代碼示例
- C++ multiset begin()、end()用法及代碼示例
- C++ multiset rbegin()、rend()用法及代碼示例
- C++ multiset cbegin()、cend()用法及代碼示例
- C++ multiset crbegin()、crend()用法及代碼示例
- C++ multiset::emplace()用法及代碼示例
- C++ multiset max_size()用法及代碼示例
- C++ multiset::operator=用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 multiset find() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。