VOOZH about

URL: https://www.geeksforgeeks.org/cpp/unordered_set-empty-function-in-c-stl/

⇱ unordered_set empty() function in C++ STL - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

unordered_set empty() function in C++ STL

Last Updated : 16 Nov, 2023

The unordered_set::empty is a built-in function in C++ STL which is used to check if an unordered_set container is empty or not. It returns True if the unordered_set container is empty, otherwise it returns False. 

Syntax:

set_name.empty()

Parameters: This function does not accepts any parameter. 

Return Value: It returns a boolean value True if the unordered_set container is empty, else false. 

Below programs illustrate the above function: 

Program 1:


Output
true
false

Program 2:


Output
false

Time complexity: O(1)

Comment