当前位置: 首页 > 工具软件 > Pop List View > 使用案例 >

stl stack pop_C ++ STL中的stack :: pop()函数

司寇研
2023-12-01

stl stack pop

Prototype:

原型:

    stack<T> st; //declaration
    st.pop();

Parameter:

参数:

    No parameter passed

Return type: void

返回类型: void

Header file to be included:

包含的头文件:

    #include <iostream>
    #include <stack>
    OR
    #include <bits/stdc++.h>

Usage:

用法:

The function pops the top element from the stack.

该函数从堆栈中弹出顶部元素。

Time complexity: O(1)

时间复杂度:O(1)

Example:

例:

    For a stack of integer,
    stack<int> st;
    st.push(4);
    st.push(5);
    stack content:
    5 

C++ implementation:

Output

...use of pop function...
stack elements are:
top element is:6
top element is:5
top element is:4
stack empty
3 pop operation performed total to make stack empty




Comments and Discussions

Ad: Are you a blogger? Join our Blogging forum.


翻译自: https://www.includehelp.com/stl/stack-pop-function-in-cpp-stl.aspx

stl stack pop

 类似资料: