首页 > 编程语言 > 详细

leetcode 106 Construct Binary Tree from Inorder and Postorder Traversal----- java

时间:2016-10-28 19:36:54      阅读:172      评论: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.

 

和上一道题基本一样

 

根据中序和后序遍历确定一个棵树。

 

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public TreeNode buildTree(int[] inorder, int[] postorder) {
      

        int len = inorder.length;
        if( len == 0)
            return null;

        return helper(inorder,0,len-1,postorder,len-1);

    }

    public TreeNode helper(int[] inorder,int start,int end, int[] postorder, int pos ){

        if( pos < 0 || start > end)
            return null;
        TreeNode node = new TreeNode(postorder[pos]);

        int size = 0;
        for( int i = end;i >= start && inorder[i] != postorder[pos];i--,size++)
            ;

        node.left = helper(inorder,start,end-size-1,postorder,pos-size-1);

        node.right = helper(inorder,end-size+1,end,postorder,pos-1);

        return node;

    }
}

 

leetcode 106 Construct Binary Tree from Inorder and Postorder Traversal----- java

原文:http://www.cnblogs.com/xiaoba1203/p/6008848.html

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