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

Leetcode Construct Binary Tree from Inorder and Postorder Traversal

时间:2014-07-03 20:25:21      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   strong   os   for   

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

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

class Solution {
public:
    TreeNode *buildTree(vector<int>& inorder, int in_left,int in_right,
                        vector<int>& postorder,  int post_left, int post_right){
        if(in_right < in_left || post_right < post_left) return NULL;
        TreeNode *root = new TreeNode(postorder[post_right]);
        int index = in_left;
        for( ; index <= in_right; ++ index ) if(inorder[index] == postorder[post_right])  break;
        int right_cnt = in_right-index;
        root->left = buildTree(inorder,in_left,index-1,postorder,post_left,post_right-right_cnt-1);
        root->right = buildTree(inorder,index+1,in_right,postorder, post_right-right_cnt,post_right-1);
        return root;
    }

    TreeNode *buildTree(vector<int> &inorder, vector<int> &postorder) {
        if(inorder.size() == 0) return NULL;
        else return buildTree(inorder,0,inorder.size()-1, postorder,0,postorder.size()-1);
    }
};

 

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

Leetcode Construct Binary Tree from Inorder and Postorder Traversal

标签:style   blog   color   strong   os   for   

原文地址:http://www.cnblogs.com/xiongqiangcs/p/3821197.html

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