2 Star 0 Fork 0

CS-IMIS-23/20172311hai

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
LinkedBinaryTreeTest.java 1.63 KB
一键复制 编辑 原始数据 按行查看 历史
package week8;
public class LinkedBinaryTreeTest {
public static void main(String args[]){
LinkedBinaryTree stringLinkedBinaryTree1 = new LinkedBinaryTree<>("我是赵晓海");
LinkedBinaryTree stringLinkedBinaryTree2 = new LinkedBinaryTree<>("我20周岁了");
LinkedBinaryTree stringLinkedBinaryTree3 = new LinkedBinaryTree<>("我爱好广泛");
LinkedBinaryTree stringLinkedBinaryTree4 = new LinkedBinaryTree<>("IG牛逼");
LinkedBinaryTree node1 = new LinkedBinaryTree("你好",stringLinkedBinaryTree1, stringLinkedBinaryTree2);
LinkedBinaryTree node2 = new LinkedBinaryTree("我来自山东",stringLinkedBinaryTree3,node1);
LinkedBinaryTree node3 = new LinkedBinaryTree("树的根",node2,stringLinkedBinaryTree4);
//测试contains方法,测试树中是否有String型的你好,应该返回true
System.out.println("书中是否有String型的你好:"+node3.contains("你好"));
//测试getRight方法,返回并打印node2节点的右子树
System.out.println("返回并打印node2节点的右子树:");
System.out.println(node2.getRight().toString());
//测试toString方法,打印以node3为根节点的树
System.out.println("以node3为根节点的树:");
System.out.println(node3.toString());
//测试前序输出方法,打印以node3为根节点的树的前序输出
System.out.print("前序输出:");
node3.toPreString();
//测试后序输出方法,打印以node3为根节点的树的后序输出
System.out.println("\n后序输出:");
node3.toPostString();
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/CS-IMIS-23/20172311hai.git
git@gitee.com:CS-IMIS-23/20172311hai.git
CS-IMIS-23
20172311hai
20172311hai
master

搜索帮助