C++ Stack 库 - push() 函数
描述
C++ 函数 std::stack::push() 将新元素插入堆栈顶部并将堆栈大小增加一。
声明
以下是 std::stack::push() 函数形式 std::stack 头的声明。
C++98
void push (const value_type& val);
C++11
void push (const value_type& val);
参数
val − 要分配给新插入元素的值。
返回值
None.
异常
取决于底层容器。
时间复杂度
常数,即 O(1)
示例
以下示例显示了 std::stack::push() 函数的用法。
#include <iostream> #include <stack> using namespace std; int main(void) { stack<int> s; for (int i = 0; i < 5; ++i) s.push(i + 1); cout << "Stack contents are" << endl; while (!s.empty()) { cout << s.top() << endl; s.pop(); } return 0; }
让我们编译并运行上面的程序,这将产生以下结果 −
Stack contents are 5 4 3 2 1