摘要: static final int MAXLEN = 20; //最大长度 class CBTType //定义二叉树节点类型 { String data; //元素数据 CBTType left; //左子树节点引用 CBTType right; //右子树节点引用 } CBTType InitTree() //... 阅读全文
posted @ 2016-04-17 15:37 whieenz 阅读(1944) 评论(0) 推荐(0) 编辑