08 2015 档案

摘要:首先编写二叉树类BinaryTree,代码如下:package package2;public class BinaryTree {int data;//根节点数据BinaryTree left;//左子树BinaryTree right;//右子树public BinaryTree(int dat... 阅读全文
posted @ 2015-08-17 16:17 lxclqy 阅读(12403) 评论(0) 推荐(0)