當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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