首页 > 其他 > 详细

[LeetCode]Construct Binary Tree from Inorder and Postorder Traversal

时间:2014-03-11 23:25:09      阅读:550      评论: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.

 

Have you been asked this question in an interview? 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
 * 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 *DFS(vector<int> &inorder, vector<int> &postorder,int leftstart,int leftend,int rightstart,int rightend)
    {
        if(leftend<leftstart||rightend<rightend) return NULL;
        TreeNode *root=new TreeNode(postorder[rightend]); //
        int pos;
        for(int i=leftstart;i<=leftend;i++)
        {
            if(inorder[i]==postorder[rightend])
            {
                pos=i;
                break;
            }
        }
        int len=pos-leftstart;
        root->left=DFS(inorder,postorder,leftstart,pos-1,rightstart,rightstart+len-1);
        root->right=DFS(inorder,postorder,pos+1,leftend,rightstart+len,rightend-1);
        return root;
    }
    TreeNode *buildTree(vector<int> &inorder, vector<int> &postorder) {
        return DFS(inorder,postorder,0,inorder.size()-1,0,postorder.size()-1);
    }
};

  

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

[LeetCode]Construct Binary Tree from Inorder and Postorder Traversal

原文:http://www.cnblogs.com/Rosanna/p/3594878.html

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