摘要: package com.tree.demo;public class BinaryTree { int data; // 根节点数据 BinaryTree left; // 左子树BinaryTree right; // 右子树 public BinaryTree(int data) // 实例化... 阅读全文
posted @ 2014-07-18 15:33 xiangfeng2318 阅读(162) 评论(0) 推荐(0) 编辑