Sets are containers that store unique elements following a specific order. Internally, the elements in a set are always sorted. Sets are typically implemented as binary search trees.
The set class provides a member function, set::size() function is used to return the size of the set container or the number of elements in the set container.
Syntax
set_name.size();
Return Value
- It returns the number of elements in the set container.
Errors and Exceptions
- It has a no exception throw guarantee.
- Shows an error when a parameter is passed.
Example
C++
#include <bits/stdc++.h>
using namespace std;
int main()
{
set< char > set1, set2;
for ( int i = 0; i < 4; i++) {
set1.insert( 'a' + i);
}
cout << "set1 size: " << set1.size();
cout << endl;
cout << "set2 size: " << set2.size();
return 0;
}
|
Output
set1 size: 4
set2 size: 0
Note: This function works in constant time complexity.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
30 May, 2023
Like Article
Save Article