leetcode 从前序与中序遍历构造一颗二叉树 深搜

Posted clear-love

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 从前序与中序遍历构造一颗二叉树 深搜相关的知识,希望对你有一定的参考价值。

根据一棵树的前序遍历与中序遍历构造二叉树。

注意:
你可以假设树中没有重复的元素。

例如,给出

前序遍历 preorder =?[3,9,20,15,7]
中序遍历 inorder = [9,3,15,20,7]
返回如下的二叉树:

3
/ 9 20
/ 15 7

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal
思路:前序遍历是根左右,中序遍历是左中右,那麽在每次在前序遍历里面找到根节点,然后再一步步缩小范围找到每一个根节点(递归实现

class Solution 
public:
    unordered_map<int,int> pos;//目的是快速找到一个值在inorder内的下标
    TreeNode* buildTree(vector<int>& preorder, vector<int>& inorder) 
        int n=preorder.size();
        for(int i=0;i<n;++i)
            pos[inorder[i]]=i;
        
        return dfs(preorder,inorder,0,n-1,0,n-1);
    
    TreeNode* dfs(vector<int>& pre,vector<int>& in,int pl,int pr,int il,int ir)
        if(pl>pr)return NULL;//进行到找不到结点的时候就返回
        int len=pos[pre[pl]]-il;
        auto root = new TreeNode(pre[pl]);
        root->left=dfs(pre,in,pl+1,pl+len,il,il+len-1);
        root->right=dfs(pre,in,pl+len+1,pr,il+len+1,ir);
        return root;
    
;

以上是关于leetcode 从前序与中序遍历构造一颗二叉树 深搜的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode No.105 从前序与中序遍历序列构造二叉树

LeetCode从前序与中序遍历序列构造二叉树,从中序与后序遍历序列构造二叉树

Leetcode 105. 从前序与中序遍历序列构造二叉树

leetcode-105,106 从前序与中序遍历序列构造二叉树,从中序与后序遍历序列构造二叉树

leetcode 105. 从前序与中序遍历序列构造二叉树

LeetCode105. 从前序与中序遍历序列构造二叉树