VOOZH about

URL: https://www.geeksforgeeks.org/cpp/unordered_multiset-max_bucket_count-function-in-c-stl/

⇱ unordered_multiset max_bucket_count() function in C++ STL - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

unordered_multiset max_bucket_count() function in C++ STL

Last Updated : 2 Aug, 2018
The unordered_multiset::max_bucket_count() is a built-in function in C++ STL which returns the maximum number of buckets that the unordered multiset container can have. This is the maximum it can have, it cannot exceed despite the collisions due to certain limitations on it. Syntax:
unordered_multiset_name.max_bucket_count()
Parameter: The function does not accepts anything. Return Value: The function returns the maximum number of buckets possible. Below programs illustrate the unordered_multiset::maximum_bucket_count() function: Program 1:
Output:
The maximum bucket count is: 1152921504606846975
Program 2:
Output:
The maximum bucket count is: 1152921504606846975
Comment