C++ Queue empty() FunctionC++ Queue empty() function is used for testing whether the container is empty or not. Sometimes before actually starting the work with the individual elements of the containers, it is more feasible to look up if the container is empty, so this function finds its usage in such cases. SyntaxParametersThere are no parameters. The function is only used to test for the emptiness of the container and hence takes no parameter. Return valueIf the container under reference is empty, then the method returns 'true' else returns 'false'. Example 1Output: result is: 55 Example 2Output: The queue is not empty ComplexityThe complexity of the function is constant. Data racesOnly the container is accessed. By accessing the container, we come to know whether it is empty or not and based on that the value is returned. Exception SafetyGuarantee as equivalent to the operations that are performed on the underlying container object is provided. Next TopicC++ Queue |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India