当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Stack empty()用法及代码示例


C++ Stack empty() 函数用于测试容器是否为空。在很多情况下,在从堆栈中提取实际元素之前,程序员会优先检查堆栈是否确实有一些元素。这样做在内存和成本方面是有利的。

用法

bool empty() const;

参数

没有参数。由于该函数仅用于测试目的,因此直接应用于堆栈。因此没有传递参数。

返回值

如果引用的容器为空,则该方法返回 'true',否则返回 'false'。该方法仅用于测试目的,因此根据测试结果返回值。

例子1

//下面给出的程序用于检测容器的空性。

#include <iostream>
#include <stack>
int main()
{
	std::stack<int> newstack;
	int sum=0;
	for (int j=1; j<=10; j++)
	newstack.push(j);
	while (!newstack.empty ())
	{
		sum += newstack.top ();
		newstack.pop ();
	}
	std::cout << "Result is:" << sum;
	return 0;
}
return 0;
}

输出:

Result is:55

例子2

//下面给出的程序用于检测容器的空性。

#include <iostream>
#include <stack>
using namespace std;
int main()
{
	std::stack<int> newstack;
	newstack.push(69);
	//Checking whether the stack is empty
	if(newstack.empty())
	{
		cout<<"The stack is empty, insert some elements to keep going";
	}
	else
	{
		cout<<"Elements are present in the stack";
	}
	return 0;
}

输出:

Elements are present in the stack

复杂度

该函数仅用于检测容器是否为空,因此不接受任何参数且具有恒定的复杂性。

数据竞争

仅访问容器。访问堆栈以检查元素的存在。此函数并非所有元素都可以访问,但可以扫一眼以检查容器是否完全为空或是否存在。

异常安全

提供等同于对底层容器对象执行的操作的保证。





相关用法


注:本文由纯净天空筛选整理自 C++ Stack empty() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。