g0901_1000.s0998_maximum_binary_tree_ii.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g0901_1000.s0998_maximum_binary_tree_ii;
// #Medium #Tree #Binary_Tree
import com_github_leetcode.TreeNode;
public class Solution {
public TreeNode insertIntoMaxTree(TreeNode root, int val) {
return insertIntoMaxTree2(root, val);
}
private TreeNode insertIntoMaxTree2(TreeNode root, int val) {
if (root == null) {
return new TreeNode(val);
}
if (root.val < val) {
return new TreeNode(val, root, null);
}
root.right = this.insertIntoMaxTree2(root.right, val);
return root;
}
}