力扣_105. 从前序与中序遍历序列构造二叉树

题目描述:从中序遍历和先序遍历重建二叉树

思路:递归

代码:

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:

    TreeNode * dfs(TreeNode *root,int root_pos,int inl,int inr,vector<int>& preorder,vector<int>& inorder){
        if(inl>inr)return root;
        if(root==nullptr){
            root = new TreeNode(preorder[root_pos]);
        }
        int i= inl;
        while(preorder[root_pos]!=inorder[i])i++; //寻找头结点在中序遍历中的位置
        root->left=dfs(root->left,root_pos+1,inl,i-1,preorder,inorder);
        root->right= dfs(root->right,root_pos+i-inl+1,i+1,inr,preorder,inorder);
        return root;

    }
    TreeNode* buildTree(vector<int>& preorder, vector<int>& inorder) {
        TreeNode *root = nullptr;

        root=dfs(root,0,0,inorder.size()-1,preorder,inorder);
        return root;
    }
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值