C++ 堆栈库 -empty() 函数


描述

C++ 函数std::stack::empty()测试堆栈是否为空。大小为零的堆栈被视为空堆栈。

宣言

以下是 std::stack::empty() 函数形式 std::stack 标头的声明。

C++98

bool empty() const;

参数

没有任何

返回值

如果堆栈为空则返回 true,否则返回 false。

例外情况

为标准容器提供无抛掷保证。

时间复杂度

常数即 O(1)

例子

以下示例显示了 std::stack::empty() 函数的用法。

#include <iostream>
#include <stack>

using namespace std;

int main(void) {
   stack<int> s;

   if (s.empty())
      cout << "Stack is empty." << endl;

   s.emplace(1);

   if (!s.empty())
      cout << "Stack is not empty." << endl;

   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果 -

Stack is empty.
Stack is not empty.
堆栈.htm