摘要: ===========================package J2EE;public class Node { public Object value; public Node left; public Node right; public Node(){ this.left=null; this.right=null; this.value=null; } public Node(Object value){ this.value=value; this.left=null; this.right=null; } public Node(Object value,Node left, 阅读全文
posted @ 2011-04-22 11:11 Together, 阅读(314) 评论(0) 推荐(0) 编辑