重建二叉樹
題目描述
輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。例如輸入前序遍歷序列{1,2,4,7,3,5,6,8}和中序遍歷序列{4,7,2,1,5,3,8,6},則重建二叉樹並返回。
題目連結: 重建二叉樹
程式碼
import java.util.*;
public class Jz04 {
// 快取中序遍歷陣列每個值對應的索引
private static Map<Integer, Integer> indexForInOrders = new HashMap<Integer, Integer>();
public static TreeNode reConstructBinaryTree(int[] pre, int[] in) {
for (int i = 0; i < in.length; i++) {
indexForInOrders.put(in[i], i);
}
return reConstructBinaryTree(pre, 0, pre.length - 1, 0);
}
/**
* 遞迴
*
* @param pre
* @param preL
* @param preR
* @param inL
* @return
*/
private static TreeNode reConstructBinaryTree(int[] pre, int preL, int preR, int inL) {
if (preL > preR) {
return null;
}
TreeNode root = new TreeNode(pre[preL]);
int inIndex = indexForInOrders.get(root.val);
int leftTreeSize = inIndex - inL;
root.left = reConstructBinaryTree(pre, preL + 1, preL + leftTreeSize, inL);
root.right = reConstructBinaryTree(pre, preL + leftTreeSize + 1, preR, inL + leftTreeSize + 1);
return root;
}
public static void main(String[] args) {
// 測試用例,並列印最後結果
int[] pre = new int[]{3, 9, 20, 15, 7};
int[] in = new int[]{9, 3, 15, 20, 7};
TreeNode treeNode = reConstructBinaryTree(pre, in);
Queue<TreeNode> nodes = new LinkedList<>();
nodes.add(treeNode);
while (!nodes.isEmpty()) {
TreeNode cur = nodes.poll();
if (cur != null) {
System.out.println(cur.val + " ");
nodes.add(cur.left);
nodes.add(cur.right);
}
}
}
}
【每日寄語】 你的微笑是最有治癒力的力量, 勝過世間最美的風景。