-
Notifications
You must be signed in to change notification settings - Fork 0
/
Solution.java
68 lines (65 loc) · 2.04 KB
/
Solution.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package Tree.medium.No_998_Maximum_Binary_Tree_II;
import Tree.TreeNode;
/**
* FileName: Solution
* Author: EdisonLi的家用MacBook Pro
* Date: 2019-04-08 21:46
* Description: Maximum Binary Tree II
* Difficulty: Medium
* <p>
* We are given the root node of a maximum tree: a tree where every node has a value greater than any other value in its subtree.
* <p>
* Just as in the previous problem, the given tree was constructed from an list A (root = Construct(A)) recursively with the following Construct(A) routine:
* <p>
* If A is empty, return null.
* Otherwise, let A[i] be the largest element of A. Create a root node with value A[i].
* The left child of root will be Construct([A[0], A[1], ..., A[i-1]])
* The right child of root will be Construct([A[i+1], A[i+2], ..., A[A.length - 1]])
* Return root.
* Note that we were not given A directly, only a root node root = Construct(A).
* <p>
* Suppose B is a copy of A with the value val appended to it. It is guaranteed that B has unique values.
* <p>
* Return Construct(B).
* <p>
* <p>
* <p>
* Example 1:
* <p>
* <p>
* <p>
* Input: root = [4,1,3,null,null,2], val = 5
* Output: [5,4,null,1,3,null,null,2]
* Explanation: A = [1,4,2,3], B = [1,4,2,3,5]
* Example 2:
* <p>
* <p>
* Input: root = [5,2,4,null,1], val = 3
* Output: [5,2,4,null,1,null,3]
* Explanation: A = [2,1,5,4], B = [2,1,5,4,3]
* Example 3:
* <p>
* <p>
* Input: root = [5,2,3,null,1], val = 4
* Output: [5,2,4,null,1,3]
* Explanation: A = [2,1,5,3], B = [2,1,5,3,4]
* <p>
* <p>
* Note:
* <p>
* 1 <= B.length <= 100
*/
public class Solution {
public TreeNode insertIntoMaxTree(TreeNode root, int val) {
if (root == null) return new TreeNode(val);
if (root.val < val){
//要插的数大于根节点的话 就要将根节点放到待插数的左节点
TreeNode treeNode = new TreeNode(val);
treeNode.left = root;
return treeNode;
}else {
root.right = insertIntoMaxTree(root.right,val);
}
return root;
}
}