我是靠谱客的博主 野性乐曲,最近开发中收集的这篇文章主要介绍c语言中 push 函数,C ++ STL中的stack :: push()函数,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

原型:stackst; //声明

st.push(T item);

参数:T item; //T是数据类型

返回类型: void

包含的头文件:#include 

#include 

OR

#include 

用法:

该函数将元素压入堆栈。

时间复杂度:O(1)

示例For a stack of integer,

stack st;

st.push(4);

st.push(5);

stack content:

4

C ++实现:#include 

using namespace std;

int main(){

cout<

stack st; //声明栈

st.push(4); //推4-

st.push(5); //推5-

cout<

cout<

st.pop(); //5弹出

cout<

st.pop(); //4弹出

return 0;

}

输出结果...use of push function...

stack elements are:

5

4

最后

以上就是野性乐曲为你收集整理的c语言中 push 函数,C ++ STL中的stack :: push()函数的全部内容,希望文章能够帮你解决c语言中 push 函数,C ++ STL中的stack :: push()函数所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部