654. 最大二叉树

给定一个不含重复元素的整数数组。一个以此数组构建的最大二叉树定义如下:

二叉树的根是数组中的最大元素。
左子树是通过数组中最大值左边部分构造出的最大二叉树。
右子树是通过数组中最大值右边部分构造出的最大二叉树。
通过给定的数组构建最大二叉树,并且输出这个树的根节点。

 

示例 :
输入:[3,2,1,6,0,5]
输出:返回下面这棵树的根节点:

  6
/   \

3 5
\ /
2 0
\
1

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/maximum-binary-tree
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

题解

/**
 * Definition for a binary tree node.
 * function TreeNode(val) {
 *     this.val = val;
 *     this.left = this.right = null;
 * }
 */
/**
 * @param {number[]} nums
 * @return {TreeNode}
 */
var constructMaximumBinaryTree = function(nums) {
    if (nums.length == 0) {
        return null
    }
    let node = {}
    node.val = Math.max.apply(null, nums)
    let left = nums.splice(0, nums.indexOf(node.val))
    let right = nums.splice(nums.indexOf(node.val) + 1, nums.length - 1)
    node.left = constructMaximumBinaryTree(left)
    node.right = constructMaximumBinaryTree(right)
    return node
};