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


C++ stack::push()用法及代码示例


原型:

    stack st; //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


相关用法


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