码迷,mamicode.com
首页 > 其他好文 > 详细

889. 根据前序和后序遍历构造二叉树

时间:2020-07-27 15:44:35      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:efi   struct   i++   img   problem   nod   public   著作权   order   

技术图片

 

 

 解答:本题主要采用递归的方式来构造二叉树

解答思路:

1、前序遍历的第一个节点必然等于后序遍历的最后一个节点,这个节点为根节点,然后再找一把刀,把中间的砍成左子树和右子树

2、前序的第二个节点,就是左子树的根节点,同时要找到这个节点在后序中的位置,那么从后序开头到这个位置之间,就是左子树了,这个位置到后序的末尾就是右子树了。

技术图片

/**
 * 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* constructFromPrePost(vector<int>& pre, vector<int>& post) {
        int length=pre.size()-1;
        TreeNode* result;
        result=helper(pre,post,0,length,0,length);
        return result;

    }
    TreeNode* helper(vector<int>& pre,vector<int>& post,int preStart,int preEnd,int postStart,int postEnd){
        if(preStart>preEnd) return NULL;
        if(preStart==preEnd){
            return new TreeNode(pre[preStart]);
        }
        TreeNode* root=new TreeNode(pre[preStart]);
        int val=pre[preStart+1];
        for(int i=postStart;i<=postEnd;i++){
            if(post[i]==val){
                int length=i-postStart;
                root->left=helper(pre,post,preStart+1,preStart+length+1,postStart,i);
                root->right=helper(pre,post,preStart+length+2,preEnd,i+1,postEnd-1);
                
            }
        }
        return root;
    }
};

作者:a380922457
链接:https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-postorder-traversal/solution/jian-dan-yi-dong-ban-by-a380922457-3/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

 

889. 根据前序和后序遍历构造二叉树

标签:efi   struct   i++   img   problem   nod   public   著作权   order   

原文地址:https://www.cnblogs.com/pesuedream/p/13384760.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!