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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。