검지 offer 프로그래밍 문제 (4): 두 갈래 나무 재구성
/**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
TreeNode* reConstructBinaryTree(vector<int> pre,vector<int> vin) {
if(vin.size()==0 || pre.size() == 0)
return NULL;
int k;
for(int i=0;iif(pre[0]==vin[i]){
k=i;
break;
}
}
TreeNode *node=new TreeNode(pre[0]);
vector<int> left_vin;
vector<int> left_pre;
vector<int> right_vin;
vector<int> right_pre;
for(int i=0;i1]);
}
// {1,2,4,7,3,5,6,8}
// {4,7,2,1,5,3,8,6}
for(int i=k+1;ileft=reConstructBinaryTree(left_pre,left_vin);
node->right=reConstructBinaryTree(right_pre,right_vin);
return node;
}
};
class Solution
{
public:
TreeNode* reConstructBinaryTree(vector<int> pre,vector<int> vin)
{
if(pre.size()<=0||vin.size()<=0)
return NULL;
TreeNode *root=new TreeNode(pre[0]);
// {1,2,4,7,3,5,6,8} {4,7,2,1,5,3,8,6}
for(int i=0;iif(pre[0]==vin[i])
{
root->left=reConstructBinaryTree(copy(pre,1,i),copy(vin,0,i-1));
root->right=reConstructBinaryTree(copy(pre,i+1,pre.size()-1),copy(vin,i+1,vin.size()-1));
break;
}
}
return root;
}
vector<int> copy(vector<int> array,int begin,int end)
{
vector<int> temp;
while(begin<=end)
{
temp.push_back(array[begin++]);
}
return temp;
}
};
두 갈래 나무는 뿌리 노드를 제거하고 왼쪽 아이와 오른쪽 아이는 모두 새로운 나무이다. 앞의 순서는 {1,2,4,7,3,5,6,8}이고 중간의 순서는 뿌리 노드의 위치에서 분리된다. 그의 왼쪽 아이의 앞의 순서는 {2,4,7}이고 오른쪽 아이는 {3,5,6,8}로 추정된다.먼저 루트 노드가 중순으로 흐르는 위치를 찾은 다음에 좌우 트리를 분리하여 트리를 만듭니다.
교체기 방법으로 실현:
class Solution
{
public:
TreeNode* reConstructBinaryTree(vector<int> pre, vector<int> vin)
{
if (pre.size() <= 0 || vin.size() <= 0)
return NULL;
// {1,2,4,7,3,5,6,8} {4,7,2,1,5,3,8,6}
TreeNode* node = new TreeNode(pre[0]);
for (auto itVin = vin.begin(); itVin != vin.end(); ++itVin)
if (*itVin == pre[0]) {
auto itPre = pre.begin() + 1 + (itVin - vin.begin());
node->left = reConstructBinaryTree(copy(pre,pre.begin() + 1, itPre), copy(vin,vin.begin(), itVin));
node->right = reConstructBinaryTree(copy(pre,itPre, pre.end()), copy(vin,itVin + 1, vin.end()));
}
return node;
}
vector<int> copy(vector<int> array, vector<int> ::iterator be, vector<int> ::iterator en)
{
vector<int> temp;
temp.assign(be, en);
return temp;
}
};
class Solution
{
public:
TreeNode* reConstructBinaryTree(vector<int> pre, vector<int> vin)
{
if (pre.size() <= 0 || vin.size() <= 0)
return NULL;
// {1,2,4,7,3,5,6,8} {4,7,2,1,5,3,8,6}
TreeNode* node = new TreeNode(pre[0]);
for (auto itVin = vin.begin(); itVin != vin.end(); ++itVin)
if (*itVin == pre[0]) {
auto itPre = pre.begin() + 1 + (itVin - vin.begin());
node->left = reConstructBinaryTree(vector<int>(pre.begin() + 1, itPre), vector<int>(vin.begin(), itVin));
node->right = reConstructBinaryTree(vector<int>(itPre, pre.end()), vector<int>(itVin + 1, vin.end()));
}
return node;
}
};
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
검지offer-지그재그 인쇄 두 갈래 나무제목 설명은 함수를 지그재그로 인쇄하는 두 갈래 트리, 즉 첫 번째 줄은 왼쪽에서 오른쪽으로, 두 번째 줄은 오른쪽에서 왼쪽으로, 세 번째 줄은 왼쪽에서 오른쪽으로, 다른 줄은 이와 같이 인쇄합니다. 한 층의 노드를...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.