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


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


unordered_multiset::find()是C++ STL中的内置函数,该函数返回一个迭代器,该迭代器指向具有元素val的位置。如果元素不包含元素val,则它将返回一个迭代器,该迭代器指向容器中最后一个元素之后的位置。

用法:

unordered_multiset_name.find(val)

参数:该函数接受必须返回的参数val,该参数的位置的迭代器将被返回。


返回值:它返回一个迭代器,该迭代器指向val所在的位置。

以下示例程序旨在说明上述函数:

程序1:

// C++ program to illustrate the 
// unordered_multiset::find() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // declaration 
    unordered_multiset<int> sample; 
  
    // inserts element 
    sample.insert(100); 
    sample.insert(100); 
    sample.insert(100); 
    sample.insert(200); 
    sample.insert(500); 
    sample.insert(500); 
    sample.insert(600); 
  
    // find the position of 500 and print 
    auto it = sample.find(500); 
    if (it != sample.end()) 
        cout << *it << endl; 
    else
        cout << "500 not found\n"; 
  
    // find the position of 300 and print 
    it = sample.find(300); 
    if (it != sample.end()) 
        cout << *it << endl; 
    else
        cout << "300 not found\n"; 
  
    // find the position of 100 and print 
    it = sample.find(100); 
    if (it != sample.end()) 
        cout << *it << endl; 
    else
        cout << "100 not found\n"; 
  
    return 0; 
}
输出:
500
300 not found
100

程序2:

// C++ program to illustrate the 
// unordered_multiset::find() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // declaration 
    unordered_multiset<char> sample; 
  
    // inserts element 
    sample.insert('a'); 
    sample.insert('a'); 
    sample.insert('b'); 
    sample.insert('c'); 
    sample.insert('d'); 
    sample.insert('d'); 
    sample.insert('d'); 
  
    // find the position of 'a' and print 
    auto it = sample.find('a'); 
    if (it != sample.end()) 
        cout << *it << endl; 
    else
        cout << "a not found\n"; 
  
    // find the position of 'z' and print 
    it = sample.find('z'); 
    if (it != sample.end()) 
        cout << *it << endl; 
    else
        cout << "z not found\n"; 
  
    return 0; 
}
输出:
a
z not found


相关用法


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