forked from sl1673495/leetcode-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
二叉树的前中后序遍历.js
78 lines (69 loc) · 1.41 KB
/
二叉树的前中后序遍历.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
const binaryTree = {
val: "A",
left: {
val: "B",
left: {
val: "D"
},
right: {
val: "E"
}
},
right: {
val: "C",
right: {
val: "F"
}
}
};
/**
* 前序遍历 访问顺序为 根节点 -> 左节点 -> 右节点
*/
function preorder(root) {
// 递归边界,root 为空
if (!root) {
return;
}
// 输出当前遍历的结点值
console.log("当前遍历的结点值是:", root.val);
// 递归遍历左子树
preorder(root.left);
// 递归遍历右子树
preorder(root.right);
}
/**
* 中序遍历 访问顺序为 左节点 -> 根节点 -> 右节点
*/
function inorder(root) {
// 递归边界,root 为空
if (!root) {
return;
}
// 递归遍历左子树
inorder(root.left);
// 输出当前遍历的结点值
console.log("当前遍历的结点值是:", root.val);
// 递归遍历右子树
inorder(root.right);
}
/**
* 后序遍历 访问顺序为 左节点 -> 右节点 -> 根节点
*/
function postorder(root) {
// 递归边界,root 为空
if (!root) {
return;
}
// 递归遍历左子树
postorder(root.left);
// 递归遍历右子树
postorder(root.right);
// 输出当前遍历的结点值
console.log("当前遍历的结点值是:", root.val);
}
console.log("前序遍历");
preorder(binaryTree);
console.log("中序遍历");
inorder(binaryTree);
console.log("后序遍历")
postorder(binaryTree)