Open In App
Related Articles

set max_size() function in C++ STL

Improve Article
Improve
Save Article
Save
Like Article
Like

The set::max_size() is a built-in function in C++ STL which returns the maximum number of elements a set container can hold.

Syntax: 

set_name.max_size()

Parameters: This function does not accept any parameters.

Return Value: This function returns the maximum number of elements a set container can hold. 

Below program illustrates the above function:  

C++




// CPP program to demonstrate the
// set::max_size() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
 
    set<int> s1, s2;
 
    s1.insert(1);
 
    // If set already contains elements
    cout << s1.max_size() << endl;
 
    // If set does not have elements
    cout << s2.max_size();
 
    return 0;
}


Output: 

461168601842738790
461168601842738790

 

Time Complexity: O(1)

Auxiliary Space: O(n)

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 : 21 Jun, 2022
Like Article
Save Article
Previous
Next
Similar Reads