首页 > 其他 > 详细

106 Construct Binary Tree from Inorder and Postorder Traversal 从中序与后序遍历序列构造二叉树

时间:2018-04-04 23:05:42      阅读:309      评论:0      收藏:0      [点我收藏+]

给定一棵树的中序遍历与后序遍历,依据此构造二叉树。
注意:
你可以假设树中没有重复的元素。
例如,给出
中序遍历 = [9,3,15,20,7]
后序遍历 = [9,15,7,20,3]
返回如下的二叉树:
    3
   / \
  9  20
    /  \
   15   7
详见:https://leetcode.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal/description/

/**
 * 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* buildTree(vector<int>& inorder, vector<int>& postorder) {
        int is=inorder.size();
        if(is==0||inorder.empty())
        {
            return nullptr;
        }
        int val=postorder[is-1];
        TreeNode* root=new TreeNode(val);
        vector<int> in_left,in_right,post_left,post_right;
        int p=0;
        for(;p<is;++p)
        {
            if(inorder[p]==val)
            {
                break;
            }
        }
        for(int i=0;i<is;++i)
        {
            if(i<p)
            {
                in_left.push_back(inorder[i]);
                post_left.push_back(postorder[i]);
            }
            else if(i>p)
            {
                in_right.push_back(inorder[i]);
                post_right.push_back(postorder[i-1]);
            }
        }
        root->left=buildTree(in_left,post_left);
        root->right=buildTree(in_right,post_right);
        return root;
    }
};

 

106 Construct Binary Tree from Inorder and Postorder Traversal 从中序与后序遍历序列构造二叉树

原文:https://www.cnblogs.com/xidian2014/p/8719231.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!