天天看点

(自己写,规范)根据前序遍历和中序遍历重建二叉树

题目描述

输入某二叉树的前序遍历和中序遍历的结果,请重建出该二叉树。假设输入的前序遍历和中序遍历的结果中都不含重复的数字。例如输入前序遍历序列{1,2,4,7,3,5,6,8}和中序遍历序列{4,7,2,1,5,3,8,6},则重建二叉树并返回。

示例1

输入

复制

[1,2,3,4,5,6,7],[3,2,4,1,6,5,7]      

返回值

复制

{1,2,5,3,4,6,7}      
/**
 * 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 (2...) return nullptr;
//         TreeNode *root = new TreeNode(3...);
//         root->left = reConstructBinaryTree(4...); // 递归建立左子树
//         root->right = reConstructBinaryTree(5...); // 递归建立右子树
//         return root;
        return rebuild(pre,0,pre.size()-1,vin,0,vin.size()-1);
    }
    TreeNode* rebuild(vector<int> pre,int preStart,int preEnd,vector<int> vin,int vinStart,int vinEnd)
    {
        if(preStart>preEnd||vinStart>vinEnd) return NULL;
        TreeNode *root = new TreeNode(pre[preStart]);
        for(int i=vinStart;i<=vinEnd;i++)
        {
            if(vin[i]==pre[preStart])
            {
                root->left=rebuild(pre,preStart+1,preStart+(i-vinStart),vin,vinStart,i-1);
                root->right=rebuild(pre,preStart+(i-vinStart)+1,preEnd,vin,i+1,vinEnd);
                break;
            }
        }
        return root;
    }
};
           

继续阅读