原型:
stackst; //declaration st.push(T item);
参数:
T item; //T is the data type
返回类型:空白
要包含的头文件:
#include <iostream> #include <stack> OR #include <bits/stdc++.h>
用法:
该函数将元素推入堆栈。
时间复杂度:O(1)
例:
For a stack of integer, stack<int> st; st.push(4); st.push(5); stack content: 5 <- TOP 4
C++ 实现:
#include <bits/stdc++.h>
using namespace std;
int main(){
cout<<"...use of push function...\n";
stack<int> st; //declare the stack
st.push(4); //pushed 4
st.push(5); //pushed 5
cout<<"stack elements are:\n";
cout<<st.top()<<endl; //prints 5
st.pop(); //5 popped
cout<<st.top()<<endl; //prints 4
st.pop(); //4 popped
return 0;
}
输出
...use of push function... stack elements are: 5 4
相关用法
- C++ stack::pop()用法及代码示例
- C++ stack::top()用法及代码示例
- C++ stack::empty()用法及代码示例
- C++ stack::size()用法及代码示例
- C++ stack top()用法及代码示例
- C++ stack push()、pop()用法及代码示例
- C++ stack swap()用法及代码示例
- C++ stack emplace()用法及代码示例
- C++ stable_sort()用法及代码示例
- C++ std::max()用法及代码示例
- C++ std::string::push_back()用法及代码示例
- C++ std::less_equal用法及代码示例
- C++ string::length()用法及代码示例
- C++ std::is_member_object_pointer模板用法及代码示例
- C++ std::copy_n()用法及代码示例
- C++ std::string::insert()用法及代码示例
- C++ std::is_sorted_until用法及代码示例
- C++ std::iota用法及代码示例
- C++ std::numeric_limits::digits用法及代码示例
- C++ std::string::data()用法及代码示例
注:本文由纯净天空筛选整理自 stack::push() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。