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


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


unordered_set::size()方法是C++ STL中的内置函数,用于返回unordered_set容器中的元素数。

用法

unordered_set_name.size()

参数:不接受任何参数。


返回值:该函数返回容器中元素的数量。

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

示例1:

// C++ program to illustrate the  
// unordered_set.size() function  
#include <iostream> 
#include <unordered_set> 
  
using namespace std; 
  
int main() 
{ 
  
    unordered_set<int> arr1 = { 1, 2, 3, 4, 5 }; 
  
    // prints the size of arr1 
    cout << "size of arr1:" << arr1.size(); 
  
    // prints the element 
    cout << "\nThe elements are: "; 
    for (auto it = arr1.begin(); it != arr1.end(); it++) 
        cout << *it << " "; 
  
    return 0; 
}
输出:
size of arr1:5
The elements are: 5 1 2 3 4

示例2:

// C++ program to illustrate the 
// unordered_set::size() function 
// when container is empty 
#include <iostream> 
#include <unordered_set> 
  
using namespace std; 
  
int main() 
{ 
  
    unordered_set<int> arr2 = {}; 
  
    // prints the size 
    cout << "Size of arr2 : " << arr2.size(); 
  
    return 0; 
}
输出:
Size of arr2 : 0


相关用法


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