摘要: package com.data.tree; public class BiTree { String data;//数据域 BiTree left,right;//下一个结点 int leval;//层数 } package com.data.tree; /** * ClassName TreeTest Description TODO * @author ... 阅读全文
posted @ 2018-12-24 14:35 Payphone 阅读(179) 评论(0) 推荐(0) 编辑
摘要: package com.data.tree; /** * ClassName TreeTest Description TODO * @author Payphone * @date 2018年12月24日 下午1:44:07 * @version V1.0 */ public class TreeTest { public static int maxsize = 100;... 阅读全文
posted @ 2018-12-24 14:32 Payphone 阅读(56) 评论(0) 推荐(0) 编辑