首页 > 其他 > 详细

106. 从中序与后序遍历序列构造二叉树

时间:2020-05-24 22:49:46      阅读:58      评论:0      收藏:0      [点我收藏+]

地址:https://leetcode-cn.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal/

<?php
/**
根据一棵树的中序遍历与后序遍历构造二叉树。

注意:
你可以假设树中没有重复的元素。

例如,给出

中序遍历 inorder = [9,3,15,20,7]
后序遍历 postorder = [9,15,7,20,3]
返回如下的二叉树:

3
/ 9  20
/  15   7

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
 */
/**
 * Definition for a binary tree node.
 * class TreeNode {
 *     public $val = null;
 *     public $left = null;
 *     public $right = null;
 *     function __construct($value) { $this->val = $value; }
 * }
 */
class Solution {

    /**
     * @param Integer[] $inorder
     * @param Integer[] $postorder
     * @return TreeNode
     */
    function buildTree($inorder, $postorder) {
        if(!$postorder) return null;
        $x = array_pop($postorder);
        $node = new TreeNode($x);
        $key = array_search($x,$inorder);
        $node->left= $this->buildTree(array_slice($inorder,0,$key),array_slice($postorder,0,$key));
        $node->right = $this->buildTree(array_slice($inorder,$key+1),array_slice($postorder,$key));
        return $node;
    }
}

 

106. 从中序与后序遍历序列构造二叉树

原文:https://www.cnblogs.com/8013-cmf/p/12953225.html

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