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

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

时间:2018-04-04 23:29:28      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:二叉树   ons   .com   bsp   cto   desc   gpo   node   nbsp   

给定一棵树的中序遍历与后序遍历,依据此构造二叉树。
注意:
你可以假设树中没有重复的元素。
例如,给出
中序遍历 = [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 从中序与后序遍历序列构造二叉树

标签:二叉树   ons   .com   bsp   cto   desc   gpo   node   nbsp   

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

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