摘要: 1 package ren.laughing.datastructure.baseImpl; 2 3 import ren.laughing.datastructure.base.Iterator; 4 import ren.laughing.datastructure.base.LinkedList; 5 import ren.laughing.datastructure... 阅读全文
posted @ 2016-04-13 21:03 回看欧洲 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 1 package ren.laughing.datastructure.baseImpl; 2 3 import ren.laughing.datastructure.base.Node; 4 /** 5 * 二叉树存储结构结点定义:三叉链表 6 * 三个指针域包含父结点、左孩子、右孩子 7 * @author Laughing_Lz 8 * @tim... 阅读全文
posted @ 2016-04-13 11:44 回看欧洲 阅读(616) 评论(0) 推荐(0) 编辑
摘要: 1 package ren.laughing.datastructure.Instance; 2 /** 3 * 递归案例 4 * @author Laughing_Lz 5 * @time 2016年4月13日 6 */ 7 public class RecuisionInstace { 8 /** 9 * 汉诺塔问题 10 * 结束条件:... 阅读全文
posted @ 2016-04-13 10:14 回看欧洲 阅读(157) 评论(0) 推荐(0) 编辑