首页 > 其他 > 详细

Construct Binary Tree from Inorder and Postorder Traversal

时间:2014-05-30 16:13:02      阅读:396      评论:0      收藏:0      [点我收藏+]

Given inorder and postorder traversal of a tree, construct the binary tree.

Note:
You may assume that duplicates do not exist in the tree.

bubuko.com,布布扣
/**
 * Definition for binary tree
 * 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) 
    {
        return build(inorder,0,inorder.size()-1,postorder,0,postorder.size()-1);
    }
    TreeNode *build(vector<int> &inorder,int inl,int inr, vector<int> &postorder,int pl,int pr)
    {
        if(inl>inr) return NULL;
        
        TreeNode *root=new TreeNode(postorder[pr]);
        int index=inl;
        while(inorder[index]!=postorder[pr]) index++;
        root->left=build(inorder,inl,index-1,postorder,pl,pl+index-inl-1);
        root->right=build(inorder,index+1,inr,postorder,pr-(inr-index),pr-1);
    }
};
bubuko.com,布布扣

 

Construct Binary Tree from Inorder and Postorder Traversal,布布扣,bubuko.com

Construct Binary Tree from Inorder and Postorder Traversal

原文:http://www.cnblogs.com/erictanghu/p/3759603.html

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