文件名称:java 二叉树实现
文件大小:7KB
文件格式:RAR
更新时间:2015-11-02 07:32:45
java 二叉树实现 代码 数据结构
java二叉树实现 (简单实现,入门用) /**创建二叉树*/ public BinaryTree createTree(String treeStr); /**寻找结点*/ public BinaryTree findNode(BinaryTree tree ,char sign); /**找所给结点的左子树*/ public BinaryTree lChildren(BinaryTree node); /**找所给结点的右子树*/ public BinaryTree rChildren(BinaryTree node); /**求二叉树高度*/ public int treeDepth(BinaryTree tree); /**输出树(括号表示法)*/ public void disPlayTree(BinaryTree tree);
【文件预览】:
BinaryTree
----.project(386B)
----src()
--------com()
----.classpath(232B)
----bin()
--------com()