VOOZH about

URL: https://www.geeksforgeeks.org/cpp/set-max_size-function-in-c-stl/

⇱ set max_size() function in C++ STL - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

set max_size() function in C++ STL

Last Updated : 21 Jun, 2022

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:  


Output: 
461168601842738790
461168601842738790

 

Time Complexity: O(1)

Auxiliary Space: O(n)

Comment
Article Tags: