力扣654
当前节点任务:数组中找到最大的并构造节点,递归左右两边子数组构造出左右节点
由于默认函数没有必要的参数,所以得自己写一个,必要的参数如上面所说:左右子数组,所以需要start和end参数
1 | public TreeNode constructMaximumBinaryTree(int[] nums) { |
其他树的题目点击这里
力扣654
当前节点任务:数组中找到最大的并构造节点,递归左右两边子数组构造出左右节点
由于默认函数没有必要的参数,所以得自己写一个,必要的参数如上面所说:左右子数组,所以需要start和end参数
1 | public TreeNode constructMaximumBinaryTree(int[] nums) { |
其他树的题目点击这里
Update your browser to view this website correctly. Update my browser now