#树#递归#最大二叉树II
Posted lyr-2000
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了#树#递归#最大二叉树II相关的知识,希望对你有一定的参考价值。
/** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode() {} * TreeNode(int val) { this.val = val; } * TreeNode(int val, TreeNode left, TreeNode right) { * this.val = val; * this.left = left; * this.right = right; * } * } */ class Solution { public TreeNode insertIntoMaxTree(TreeNode root, int val) { if(null == root) return new TreeNode(val); if(val > root.val) { TreeNode n = new TreeNode(val); n.left = root; return n; } root.right = insertIntoMaxTree(root.right,val); return root; } }
以上是关于#树#递归#最大二叉树II的主要内容,如果未能解决你的问题,请参考以下文章