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


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


unordered_multiset的size()方法用于计算与其一起调用的unordered_set的元素数。它获取容器中的元素数并计算元素数。

用法:

size_type size() const;

其中size_type是无符号整数类型。


返回值:此函数返回受控序列的长度,或者简而言之,它返回容器中元素的数量。

以下示例程序旨在说明unordered_multiset size()函数:-

例:

#include <iostream> 
#include <unordered_set> 
  
using namespace std; 
  
int main() 
{ 
  
    // Define the unordered_set 
    unordered_multiset<int> numbers{ 1, 2, 3, 4, 5, 6 }; 
  
    // Calculate and print 
    // the size of the unordered_multiset 
    cout << "The container has "
         << numbers.size() 
         << " elements in it"; 
}
输出:
The container has 6 elements in it

复杂:
执行操作需要花费恒定(O(1))的时间复杂度。



相关用法


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