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

LeetCode: Sum of Left Leaves

 1 /**
 2  * Definition for a binary tree node.
 3  * public class TreeNode {
 4  *     int val;
 5  *     TreeNode left;
 6  *     TreeNode right;
 7  *     TreeNode(int x) { val = x; }
 8  * }
 9  */
10 public class Solution {
11     public int sumOfLeftLeaves(TreeNode root) {
12         if (root == null) return 0;
13         else return sumHelp(root.left, true) + sumHelp(root.right, false);
14     }
15     private int sumHelp(TreeNode root, boolean isLeft) {
16         if (root == null) return 0;
17         if (root.left == null && root.right == null && isLeft == true) return root.val;
18         return sumHelp(root.left, true) + sumHelp(root.right, false);
19     }
20 }

 

posted @ 2016-11-25 10:54  ying_vincent  阅读(166)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3