前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >LintCode 中序遍历和后序遍历树构造二叉树题目代码

LintCode 中序遍历和后序遍历树构造二叉树题目代码

作者头像
desperate633
发布2018-08-22 15:12:44
2330
发布2018-08-22 15:12:44
举报
文章被收录于专栏:desperate633

题目

根据中序遍历和后序遍历树构造二叉树

注意事项

你可以假设树中不存在相同数值的节点

样例 给出树的中序遍历: [1,2,3] 和后序遍历: [1,3,2]

返回如下的树:

2

/ \

1 3

代码

代码语言:javascript
复制
/**
 * Definition of TreeNode:
 * public class TreeNode {
 *     public int val;
 *     public TreeNode left, right;
 *     public TreeNode(int val) {
 *         this.val = val;
 *         this.left = this.right = null;
 *     }
 * }
 */
 
 
public class Solution {
    /**
     *@param inorder : A list of integers that inorder traversal of a tree
     *@param postorder : A list of integers that postorder traversal of a tree
     *@return : Root of a tree
     */
    public TreeNode buildTree(int[] inorder, int[] postorder) {
        if (inorder.length != postorder.length) {
            return null;
        }
        return myBuildTree(inorder, 0, inorder.length - 1, postorder, 0, postorder.length - 1);
    }

    private TreeNode myBuildTree(int[] inorder, int instart, int inend, int[] postorder, int poststart, int postend) {
        
        if(instart > inend)
            return null;
        
        TreeNode root =  new TreeNode(postorder[postend]);
        
        int position = findposition(inorder, root.val);
        
        
        root.left = myBuildTree(inorder, instart, position-1,postorder,poststart,poststart+position-instart-1);
        root.right = myBuildTree(inorder, position+1,inend, postorder, poststart+position-instart,postend-1);
        
        return root;
    }
    
    private int findposition(int[] inorder, int key) {
        for(int i=0;i<inorder.length;i++) {
            if(inorder[i] == key)
                return i;
        }
        return -1;
    }
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2017.03.15 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 题目
  • 代码
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档