앞의 순서와 중간의 순서에 따라 두 갈래 나무를 구성하다
public TreeNode reConstructBinaryTree(int [] pre,int [] in) {
int n = pre.length;
TreeNode root = new TreeNode(pre[0]);
int leftLen = 0;
for(leftLen=0;leftLen<n&&pre[0]!=in[leftLen];leftLen++);
int rightLen = n - leftLen - 1;
int left1[] = new int[leftLen];
int right1[] = new int[rightLen];
int left2[] = new int[leftLen];
int right2[] = new int[rightLen];
for(int i=1;i<=leftLen;i++){
left1[i-1] = pre[i];
left2[i-1] = in[i-1];
}
for(int i=0;i<rightLen;i++){
right1[i] = pre[leftLen+i+1];
right2[i] = in[leftLen+i+1];
}
if(leftLen>0){
root.left = reConstructBinaryTree(left1,left2);
}
if(rightLen>0){
root.right = reConstructBinaryTree(right1,right2);
}
return root;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
순환 경기 일정(귀속 해법)문제 설명: n=2k 선수가 테니스 사이클을 치러야 한다.지금 요구를 충족시키는 경기 일정표를 설계해야 돼요. (1) 모든 선수는 다른 n-1개 선수와 한 번씩 시합해야 한다. (2) 하루에 한 번만 경기할 수 있는...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.