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

【leetcode】Construct Binary Tree from Inorder and Postorder Traversal

时间:2014-06-08 09:56:52      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:algorithm   leetcode   面试题   算法   二叉树   

问题:

由中序和后序遍历构造二叉树。

分析:


//实现

TreeNode *addNode(vector<int> &inorder, int s1, int end1, vector<int> &postorder,  int s2, int end2)
    {
        if(s1 > end1 || s2 > end2)
        return NULL;
        //construct the root 
        TreeNode *root = new TreeNode(postorder[end2]);
        //index_of_root: the index of root in inorder.
        int i = s1;
        for(; i <= end1; ++i)
        {
            if(inorder[i] == postorder[end2])
               break;
        }
        if(i > end1)
            return NULL;
        int dist = i - s1;
        //construct the left branch
        root->left = addNode(inorder, s1, i - 1, postorder, s2, s2 + dist - 1);
        //construct the right branch
        root->right = addNode(inorder, i + 1 , end1, postorder, s2 + dist, end2 - 1);
        return root;
        
    }
    TreeNode *buildTree(vector<int> &inorder, vector<int> &postorder) {
        int inLen = inorder.size();
        int posLen = postorder.size();
        if(inLen == 0 || posLen == 0 || inLen != posLen)
            return NULL;
        TreeNode *root = addNode(inorder, 0, inLen - 1, postorder, 0, posLen - 1);
        return root;
    }



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

【leetcode】Construct Binary Tree from Inorder and Postorder Traversal

标签:algorithm   leetcode   面试题   算法   二叉树   

原文地址:http://blog.csdn.net/shiquxinkong/article/details/28892221

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