두 갈래 트리 재구성(Java 구현)
1334 단어 검지 offer(Java 구현)
문제 풀이 사고방식의 앞뒤가 두루 흐르는 결과는 뿌리 노드이다.이렇게 하면 중서열에 따라 중근 노드의 위치에 따라 두 갈래 나무를 두 글자 나무(왼쪽 나무, 오른쪽 나무)로 나누어 귀속적인 사상을 이용하여 이 문제를 해결할 수 있다.
구현 코드:
/**
* Definition for binary tree
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Solution {
public TreeNode reConstructBinaryTree(int [] pre,int [] in) {
TreeNode root=reConstructBinaryTree(pre,0,pre.length-1,in,0,in.length-1);
return root;
}
private TreeNode reConstructBinaryTree(int [] pre,int startPre,int endPre,int [] in,int startIn,int endIn) {
if(startPre>endPre||startIn>endIn)
return null;
TreeNode root=new TreeNode(pre[startPre]);
for(int i=startIn;i<=endIn;i++)
if(in[i]==pre[startPre]){
root.left=reConstructBinaryTree(pre,startPre+1,startPre+i-startIn,in,startIn,i-1);
root.right=reConstructBinaryTree(pre,i-startIn+startPre+1,endPre,in,i+1,endIn);
}
return root;
}
}