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


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


multiset::count(函数是C++ STL中的内置函数,它在多集容器中搜索特定元素,并返回该元素的出现次数。

用法:

multiset_name.count(val)

参数:该函数接受单个参数val,该参数指定要在多集容器中搜索的元素。


返回值:该函数返回等于multiset容器中val的元素计数。

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

示例1:

// CPP program to demonstrate the 
// multiset::count() function 
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
  
    int arr[] = { 15, 10, 15, 11, 10, 18, 18, 20, 20 }; 
  
    // initializes the set from an array 
    multiset<int> s(arr, arr + 9); 
  
    cout << "15 occurs " << s.count(15) 
         << " times in container"; 
  
    return 0; 
}
输出:
15 occurs 2 times in container

示例2:

// CPP program to demonstrate the 
// multiset::count() function 
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
  
    int arr[] = { 15, 10, 15, 11, 10, 18, 18, 18, 18 }; 
  
    // initializes the set from an array 
    multiset<int> s(arr, arr + 9); 
  
    cout << "18 occurs " << s.count(18) 
         << " times in container"; 
  
    return 0; 
}
输出:
18 occurs 4 times in container


相关用法


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