105. 从前序与中序遍历序列构造二叉树
地址:https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/
<?php /** 根据一棵树的前序遍历与中序遍历构造二叉树。 注意: 你可以假设树中没有重复的元素。 例如,给出 前序遍历 preorder = [3,9,20,15,7] 中序遍历 inorder = [9,3,15,20,7] 返回如下的二叉树: 3 / \ 9 20 / \ 15 7 来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-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[] $preorder * @param Integer[] $inorder * @return TreeNode */ function buildTree($preorder, $inorder) { // if($preorder == null) return null; if(!$preorder) return null; $x = array_shift($preorder); $key = array_search($x,$inorder); $node = new TreeNode($x); $node->left = $this->buildTree(array_slice($preorder,0,$key),array_slice($inorder,0,$key)); $node->right = $this->buildTree(array_slice($preorder,$key),array_slice($inorder,$key+1)); return $node; } }