Leeycode - 404. 왼쪽 잎의 합

1761 단어 데이터 구조
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 {
    private int sum=0;
    public int sumOfLeftLeaves(TreeNode root) {
        if(root==null)        
        return sum;
        if(root.left != null) {
            if(root.left.left == null && root.left.right == null) {
                sum += root.left.val;
            }
        }
        sumOfLeftLeaves(root.left);
        sumOfLeftLeaves(root.right);
        return sum;
    }

}

좋은 웹페이지 즐겨찾기