g0401_0500.s0404_sum_of_left_leaves.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g0401_0500.s0404_sum_of_left_leaves;
// #Easy #Depth_First_Search #Breadth_First_Search #Tree #Binary_Tree
import com_github_leetcode.TreeNode;
import java.util.ArrayList;
import java.util.List;
/*
* 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;
* }
* }
*/
public class Solution {
public int sumOfLeftLeaves(TreeNode root) {
List arr = new ArrayList<>();
traverse(root, arr);
return getSum(arr);
}
private void traverse(TreeNode root, List arr) {
if (root == null) {
return;
}
if (root.left != null && root.left.left == null && root.left.right == null) {
arr.add(root.left.val);
}
traverse(root.left, arr);
traverse(root.right, arr);
}
private int getSum(List arr) {
int sum = 0;
for (int i = 0; i < arr.size(); i++) {
sum += arr.get(i);
}
return sum;
}
}