摘要: /* * Java实现二叉树 */ public class BinaryTree { int treeNode; BinaryTree leftTree; BinaryTree rightTree; public BinaryTree(int Data) { // TODO Auto-generated constructor stub treeNode=Data; ... 阅读全文
posted @ 2016-07-10 11:06 点滴之水 阅读(287) 评论(0) 推荐(0) 编辑