当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ multiset find()用法及代码示例


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


相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 multiset find() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。