-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path105-从前序与中序遍历序列构造二叉树.java
72 lines (59 loc) · 2.1 KB
/
105-从前序与中序遍历序列构造二叉树.java
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
import java.util.*;
// 根据一棵树的前序遍历与中序遍历构造二叉树。
// 注意:
// 你可以假设树中没有重复的元素。
// 例如,给出
// 前序遍历 preorder = [3,9,20,15,7]
// 中序遍历 inorder = [9,3,15,20,7]
// 返回如下的二叉树:
// 3
// / \
// 9 20
// / \
// 15 7
//
// Definition for a binary tree node.
// public class TreeNode {
// int val;
// TreeNode left;
// TreeNode right;
// TreeNode(int x) { val = x; }
// }
// 首先,preorder 中的第一个元素一定是树的根,这个根又将 inorder 序列分成了左右两棵子树。
// 现在我们只需要将先序遍历的数组中删除根元素,然后重复上面的过程处理左右两棵子树。
class Solution {
private int[] preorder;
private Map<Integer, Integer> inorderMap = new HashMap<>();
private int preIndex = 0;
public TreeNode buildTree(int[] preorder, int[] inorder) {
this.preorder = preorder;
for (int i = 0; i < inorder.length; i++) {
inorderMap.put(inorder[i], i); // 存储中序数组,用于快速查找
}
return build(0, inorder.length - 1);
}
private TreeNode build(int inorderStart, int inorderEnd) {
if (inorderStart > inorderEnd) { // 递归结束条件
return null;
}
var rootVal = preorder[preIndex]; // 此时根节点的值
var root = new TreeNode(rootVal); // 建立当前节点的树
var rootPosition = inorderMap.get(rootVal); // 中序数组中根节点的索引
preIndex++; // 从左到右建立树,前序索引一直自增
root.left = build(inorderStart, rootPosition - 1); // 左子树
root.right = build(rootPosition + 1, inorderEnd); // 右子树
return root;
}
private class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) {
val = x;
}
}
public static void main(String[] args) {
var s = new Solution();
s.buildTree(new int[] { 3, 9, 20, 15, 7 }, new int[] { 9, 3, 15, 20, 7 });
}
}