1 Star 0 Fork 43

宝剑三/lec05-tree

forked from SE-202/lec05-tree 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
BinaryTree.java 962 Bytes
一键复制 编辑 原始数据 按行查看 历史
zan 提交于 2020-11-18 08:32 . [add] 先序遍历代码
// 写层序遍历用
import java.util.Queue;
import java.util.LinkedList;
public class BinaryTree<T> {
public Node root;
BinaryTree(){
root = null;
}
void insert(T val){}
/*
* 10
* 5 15
* 3 7 12 20
* preOrder: 10 5 3 7 15 12 20
*/
public void preOrder(){
preOrderTraversal(root);
}
private void preOrderTraversal(Node tree){
if(tree != null) {
// root.value // 10 打印自身
System.out.print(tree.value);
System.out.print(" ");
// 打印10左子树
preOrderTraversal(root.left)
// root.left.value // 5
// root.left.left.value // 3
// root.left.right.value // 7
// 打印右子树
preOrderTraversal(root.right)
// root.right.value // 15
// root.right.left.value // 12
// root.right.right.value // 20
}
}
public void inOrder(){}
public void postOrder(){}
public void level(){}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zzx1939123910/lec05-tree.git
git@gitee.com:zzx1939123910/lec05-tree.git
zzx1939123910
lec05-tree
lec05-tree
master

搜索帮助