zoukankan      html  css  js  c++  java
  • Java实现 LeetCode 404 左叶子之和

    404. 左叶子之和

    计算给定二叉树的所有左叶子之和。

    示例:

        3
       / 
      9  20
        /  
       15   7
    

    在这个二叉树中,有两个左叶子,分别是 9 和 15,所以返回 24

    /**
     * Definition for a binary tree node.
     * public class TreeNode {
     *     int val;
     *     TreeNode left;
     *     TreeNode right;
     *     TreeNode(int x) { val = x; }
     * }
     */
    class Solution {
         public int sumOfLeftLeaves(TreeNode root) {
            if(root == null) return 0;
            int res = 0;
            if(root.left != null && root.left.left == null && root.left.right == null){
                res += root.left.val;
            }
            return sumOfLeftLeaves(root.left) + sumOfLeftLeaves(root.right) + res;
        }
    }
    
  • 相关阅读:
    省选测试13
    省选测试12
    省选测试11
    省选测试9
    省选测试10
    省选测试8
    省选测试7
    省选测试6
    倍增 LCA && ST表
    博客园markdown
  • 原文地址:https://www.cnblogs.com/a1439775520/p/13075112.html
Copyright © 2011-2022 走看看