摘要: package ds.tree;/** * 使用二叉链表实现二叉树。 */public class BinaryTree { /** * 结点类。 */ class Node { int value; // 该节点存储的值。 Node left... 阅读全文
posted @ 2015-10-24 14:51 vincent_duan 阅读(148) 评论(0) 推荐(0) 编辑