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

Construct Binary Tree from Inorder and Postorder Traversal

时间:2016-04-18 22:00:27      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

思路和依据前序遍历和中序遍历重建树的思路一样,复杂度也一致,代码如下:

class Solution(object):
    def buildTree(self, inorder, postorder):
        """
        :type inorder: List[int]
        :type postorder: List[int]
        :rtype: TreeNode
        """
        if not inorder:
            return None
        length = len(inorder)
        map = {}
        for i in xrange(length):
            map[inorder[i]] = i
        return self.helper(postorder,0,length-1,0,length-1,map)
            
    def helper(self,postorder,Istart,Iend,Pstart,Pend,map):
        if Istart > Iend:
            return None
        node = TreeNode(postorder[Pend])
        if Istart == Iend:
            return node
        index = map[node.val]
        node.left = self.helper(postorder,Istart,index-1, Pstart,Pstart+index-Istart-1,map)
        node.right = self.helper(postorder,index+1,Iend,Pstart+index-Istart,Pend-1,map)
        return node

 

Construct Binary Tree from Inorder and Postorder Traversal

标签:

原文地址:http://www.cnblogs.com/sherylwang/p/5405724.html

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