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


C++ unordered_set count()用法及代码示例


unordered_set::count()函数是C++ STL中的内置函数,用于对unordered_set容器中特定元素的出现进行计数。由于unordered_set容器不允许存储重复的元素,因此该函数通常用于检查容器中是否存在元素。如果元素存在于容器中,则该函数返回1,否则返回0。

用法

unordered_set_name.count(element)

参数:此函数接受单个参数element 。此参数表示容器中是否存在需要检查的元素。


返回值:如果元素存在于容器中,则此函数返回1,否则返回0。

以下示例程序旨在说明unordered_set::count()函数:

示例1:

// CPP program to illustrate the 
// unordered_set::count() function 
  
#include <iostream> 
#include <unordered_set> 
  
using namespace std; 
  
int main() 
{ 
  
    unordered_set<int> sampleSet; 
  
    // Inserting elements 
    sampleSet.insert(5); 
    sampleSet.insert(10); 
    sampleSet.insert(15); 
    sampleSet.insert(20); 
    sampleSet.insert(25); 
  
    // displaying all elements of sampleSet 
    cout << "sampleSet contains: "; 
    for (auto itr = sampleSet.begin(); itr != sampleSet.end(); itr++) { 
        cout << *itr << " "; 
    } 
  
    // checking if element 20 is present in the set 
    if (sampleSet.count(20) == 1) { 
        cout << "\nElement 20 is present in the set"; 
    } 
    else { 
        cout << "\nElement 20 is not present in the set"; 
    } 
  
    return 0; 
}
输出:
sampleSet contains: 25 5 10 15 20 
Element 20 is present in the set

示例2:

// C++ program to illustrate the 
// unordered_set::count() function 
  
#include <iostream> 
#include <unordered_set> 
  
using namespace std; 
  
int main() 
{ 
  
    unordered_set<string> sampleSet; 
  
    // Inserting elements 
    sampleSet.insert("Welcome"); 
    sampleSet.insert("To"); 
    sampleSet.insert("GeeksforGeeks"); 
    sampleSet.insert("Computer Science Portal"); 
    sampleSet.insert("For Geeks"); 
  
    // displaying all elements of sampleSet 
    cout << "sampleSet contains: "; 
    for (auto itr = sampleSet.begin(); itr != sampleSet.end(); itr++) { 
        cout << *itr << " "; 
    } 
  
    // checking if element GeeksforGeeks is 
    // present in the set 
    if (sampleSet.count("GeeksforGeeks") == 1) { 
        cout << "\nGeeksforGeeks is present in the set"; 
    } 
    else { 
        cout << "\nGeeksforGeeks is not present in the set"; 
    } 
  
    return 0; 
}
输出:
sampleSet contains: Welcome To GeeksforGeeks For Geeks Computer Science Portal 
GeeksforGeeks is present in the set


相关用法


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