摘要: import java.util.Scanner;public class BSTree>{ BiNode root; class BiNode{ AnyType data; BiNode left; BiNode right; public BiNode(AnyType data){ ... 阅读全文
posted @ 2014-01-03 17:36 dingxiaoyue 阅读(182) 评论(0) 推荐(0) 编辑
摘要: import java.util.LinkedList;import java.util.Queue;import java.util.Scanner;import java.util.Stack;public class BTree> { BTNode root=new BTNode(); c... 阅读全文
posted @ 2014-01-03 17:34 dingxiaoyue 阅读(293) 评论(0) 推荐(0) 编辑