“Rozmiar nie uporządkowany_set” Kod odpowiedzi

Rozmiar nie uporządkowany_set

// 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;
}
Homely Hyena

Rozmiar nie uporządkowany_set

// 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;
}
Homely Hyena

Odpowiedzi podobne do “Rozmiar nie uporządkowany_set”

Pytania podobne do “Rozmiar nie uporządkowany_set”

Więcej pokrewnych odpowiedzi na “Rozmiar nie uporządkowany_set” w C++

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu