博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Leetcode Week14]Maximum Binary Tree
阅读量:5239 次
发布时间:2019-06-14

本文共 1782 字,大约阅读时间需要 5 分钟。

Maximum Binary Tree 题解

原创文章,拒绝转载

题目来源:


Description

Given an integer array with no duplicates. A maximum tree building on this array is defined as follow:

  1. The root is the maximum number in the array.
  2. The left subtree is the maximum tree constructed from left part subarray divided by the maximum number.
  3. 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.

Example

Input: [3,2,1,6,0,5]Output: return the tree root node representing the following tree:      6    /   \   3     5    \    /      2  0          \        1

Note: The size of the given array will be in the range [1,1000].

Solution

class Solution {public:    TreeNode* getSubTree(vector
& nums, int start, int end) { TreeNode* resultNode; if (start == end) { resultNode = new TreeNode(nums[start]); return resultNode; } int maxIdx = start; int i; for (i = start; i <= end; i++) { if (nums[i] > nums[maxIdx]) maxIdx = i; } resultNode = new TreeNode(nums[maxIdx]); if (maxIdx > start) { resultNode -> left = getSubTree(nums, start, maxIdx - 1); } if (maxIdx < end) { resultNode -> right = getSubTree(nums, maxIdx + 1, end); } return resultNode; } TreeNode* constructMaximumBinaryTree(vector
& nums) { if (nums.empty()) return NULL; return getSubTree(nums, 0, nums.size() - 1); }};

解题描述

这道题的题意是,对给定的一个数组,构造一棵所谓的“最大二叉树”。很容易想到的就是使用递归的思想,每次都对数组的一段进行处理,找出数组段中最大的元素,将该元素所谓当前树的树根,对元素左右两边两个数组段分别构造“最大二叉树”,分别作为树根的左子树和右子树。

转载于:https://www.cnblogs.com/yanhewu/p/7994417.html

你可能感兴趣的文章
Fragment
查看>>
比较安全的获取站点更目录
查看>>
苹果开发者账号那些事儿(二)
查看>>
使用C#交互快速生成代码!
查看>>
UVA11374 Airport Express
查看>>
P1373 小a和uim之大逃离 四维dp,维护差值
查看>>
NOIP2015 运输计划 树上差分+树剖
查看>>
P3950 部落冲突 树链剖分
查看>>
读书_2019年
查看>>
读书汇总贴
查看>>
微信小程序 movable-view组件应用:可拖动悬浮框_返回首页
查看>>
MPT树详解
查看>>
空间分析开源库GEOS
查看>>
RQNOJ八月赛
查看>>
前端各种mate积累
查看>>
jQuery 1.7 发布了
查看>>
Python(软件目录结构规范)
查看>>
Windows多线程入门のCreateThread与_beginthreadex本质区别(转)
查看>>
Nginx配置文件(nginx.conf)配置详解1
查看>>
linux php编译安装
查看>>