博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
stack 栈
阅读量:6249 次
发布时间:2019-06-22

本文共 1094 字,大约阅读时间需要 3 分钟。

 

 

 

 

package javacore;/** * @author baoyou  E-mail:curiousby@163.com * @version 创建时间:2015年9月10日 下午2:23:04  * des: */public class Stack {  	class Node {        int data;        Node pre;           public Node(int data) {            this.data = data;        }    }		transient  Node head;	transient  Node current;         public void push(int data) {        if (head == null) {            head = new Node(data);            current = head;        } else {            Node node = new Node(data);            node.pre = current;             current = node;          }    }    public Node pop() {        if (current == null) {            return null;        }        Node node = current;         current = current.pre;           return node;    }    public static void main(String[] args) {		Stack stack = new Stack ();		stack .push(1);		stack .push(2);		stack .push(3);		System.out.println(stack.pop().data);		System.out.println(stack.pop().data);		System.out.println(stack.pop().data);	} }

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

捐助开发者

在兴趣的驱动下,写一个免费的东西,有欣喜,也还有汗水,希望你喜欢我的作品,同时也能支持一下。 当然,有钱捧个钱场(右上角的爱心标志,支持支付宝和PayPal捐助),没钱捧个人场,谢谢各位。

 
 
 谢谢您的赞助,我会做的更好!

 

 

 

转载地址:http://hdfsa.baihongyu.com/

你可能感兴趣的文章
log4net 使用
查看>>
通过bat文件运行jar包程序
查看>>
关于hive RegexSerDe的源码分析
查看>>
V$INSTANCE视图
查看>>
OpenCart之侧边浮动联系我们表单(Side Contact Us Form)
查看>>
PureWhite OpenCart 商城自适应主题模板 ABC-0009
查看>>
docker整理文档
查看>>
zabbix安装配置
查看>>
Awk练习笔记
查看>>
RAID级别详解,如何在Linux下实现软RAID图文解析。
查看>>
CentOS 配置***客户端
查看>>
线上应用故障排查之二:高内存占用
查看>>
书写「简历」时,需要规避的错误
查看>>
我的友情链接
查看>>
老毛桃 win7
查看>>
continue
查看>>
myeclise10安装svn的方法
查看>>
第四次作业
查看>>
4196. [NOI2015]软件包管理器【树链剖分】
查看>>
Apache Spark源码走读之20 -- ShuffleMapTask计算结果的保存与读取
查看>>