zoukankan      html  css  js  c++  java
  • Construct Binary Tree from Inorder and Postorder Traversal

    Construct Binary Tree from Inorder and Postorder Traversal

    问题:

      Given inorder and postorder traversal of a tree, construct the binary tree.

    思路:

      dfs

    我的代码:

    public class Solution {
        public TreeNode buildTree(int[] inorder, int[] postorder) {
            if(inorder == null || inorder.length == 0)  return null;
            if(inorder.length == 1) return new TreeNode(inorder[0]);
            int len = postorder.length;
            int target = postorder[len-1];
            int index = getIndex(inorder, target);
            TreeNode root = new TreeNode(target);
            root.left = buildTree(Arrays.copyOfRange(inorder,0,index),Arrays.copyOfRange(postorder,0,index));
            root.right = buildTree(Arrays.copyOfRange(inorder, index+1, len),Arrays.copyOfRange(postorder, index, len-1));
            return root;
        }
        public int getIndex(int[] inorder, int target)
        {
            for(int i = 0; i < inorder.length; i++)
            {
                if(inorder[i] == target)
                    return i;
            }
            return -1;
        }
    }
    View Code
  • 相关阅读:
    Python 递归
    Python 面向过程编程
    Python 协程函数
    Python-第三方库requests详解
    Python 三元表达式
    linux copy
    centos 安装软件
    mysql 权限
    mysql 权限 备份
    android 开发
  • 原文地址:https://www.cnblogs.com/sunshisonghit/p/4335933.html
Copyright © 2011-2022 走看看