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


C++ unordered_set find()用法及代碼示例


unordered_set::find()函數是C++ STL中的內置函數,用於在容器中搜索元素。它返回元素的迭代器,如果找到其他元素,則返回指向unordered_set::end()的迭代器。

用法

unordered_set_name.find(key)

參數:此函數接受必需的參數鍵,該鍵指定要搜索的元素。


返回值:返回找到元素的迭代器,否則返回指向unordered_set末尾的迭代器。

以下示例程序旨在說明unordered_set::find()函數:

示例1:

// C++ program to illustrate the 
// unordered_set::find() function 
  
#include <iostream> 
#include <string> 
#include <unordered_set> 
  
using namespace std; 
  
int main() 
{ 
  
    unordered_set<string> sampleSet = { "geeks1", "for", "geeks2" }; 
  
    // use of find() function 
    if (sampleSet.find("geeks1") != sampleSet.end()) { 
        cout << "element found." << endl; 
    } 
    else { 
        cout << "element not found" << endl; 
    } 
  
    return 0; 
}
輸出:
element found.

示例2:

// CPP program to illustrate the 
// unordered_set::find() function 
  
#include <iostream> 
#include <string> 
#include <unordered_set> 
  
using namespace std; 
  
int main() 
{ 
  
    unordered_set<string> sampleSet = { "geeks1", "for", "geeks2" }; 
  
    // use of find() function 
    if (sampleSet.find("geeksforgeeks") != sampleSet.end()) { 
        cout << "found" << endl; 
    } 
    else { 
        cout << "Not found" << endl; 
    } 
  
    return 0; 
}
輸出:
Not found


相關用法


注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 unordered_set find() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。