LeetCode-Maximum Binary Tree
程序员文章站
2022-01-02 10:22:59
...
一、Description
Given an integer array with no duplicates. A maximum tree building on this array is defined as follow:
- The root is the maximum number in the array.
- The left subtree is the maximum tree constructed from left part subarray divided by the maximum number.
- The right subtree is the maximum tree constructed from right part subarray divided by the maximum number.
Construct the maximum tree by the given array and output the root node of this tree.
题目大意:
给一个整数数组,最大数的创建是按照如下规则定义的:
根节点是数组中最大的数max,它的左结点是max左边数组元素中最大的数,右结点是max右边数组元素中最大的数,以此内推。
Example 1:
Input: [3,2,1,6,0,5] Output: return the tree root node representing the following tree: 6 / \ 3 5 \ / 2 0 \ 1
二、Analyzation
一般像这种构造树的思路都是采用递归来操作,不断地调用同一个函数达到想要的效果:每次找到数组中从start到end中最大的那个数,并构造出一个新的结点,再更新start和end的值,递归的结束条件是start > end退出递归。
三、Accepted code
class Solution {
public TreeNode constructMaximumBinaryTree(int[] nums) {
if (nums == null || nums.length == 0) {
return null;
}
return help(nums, 0, nums.length - 1);
}
public TreeNode help(int[] nums, int start, int end) {
if (start > end) {
return null;
}
int max = nums[start], maxi = start;
for (int i = start + 1; i <= end; i++) {
if (max < nums[i]) {
max = nums[i];
maxi = i;
}
}
TreeNode root = new TreeNode(max);
root.left = help(nums, start, maxi - 1);
root.right = help(nums, maxi + 1, end);
return root;
}
}
下一篇: 异步,时间线
推荐阅读
-
递归 加引用 实现tree 和 无限级菜单
-
报错android.view.InflateException: Binary XML file line #11: Attempt to invoke vir
-
数据结构与算法——Tree数据结构的生成(C#)
-
Binary XML file line #19: <item> tag requires a ‘drawable‘ attribute or child tag defining a drawabl
-
mysql索引原理之B+/-Tree
-
The BINARY and VARBINARY data types_MySQL
-
EasyUI Tree树组件无限循环实例分析
-
完全掌握MySql之写入Binary Log的流程
-
二分查找(Binary Search)需要注意的问题,以及在数据库内核中的
-
Oracle B树索引简介(B-Tree Index)