• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录

xxxqqq

  • 博客园
  • 联系
  • 订阅
  • 管理

View Post

Binary Tree Maximum Node

Find the maximum node in a binary tree, return the node.

Example

Given a binary tree:

     1
   /   \
 -5     2
 / \   /  \
0   3 -4  -5 

return the node with value 3.

 1 public class Solution {
 2     /**
 3      * @param root the root of binary tree
 4      * @return the max ndoe
 5      */
 6     public TreeNode maxNode(TreeNode root) {
 7         // Write your code here
 8         if(root == null) return root;
 9         TreeNode leftMax = null;
10         if(root.left!=null){
11              leftMax = maxNode(root.left);
12         }
13         TreeNode rightMax = null;
14         if(root.right!=null){
15             rightMax = maxNode(root.right);
16         }
17         TreeNode max  = root;
18         if(leftMax!=null){
19             max = leftMax.val>max.val? leftMax : max;
20         }
21         if(rightMax!=null){
22             max = rightMax.val>max.val? rightMax : max;
23         }
24         return max;
25     }
26 }

 

posted on 2017-05-10 14:56  xxxqqq  阅读(181)  评论(0)    收藏  举报

刷新页面返回顶部
 
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3