forked from qiyuangong/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404_Sum_of_Left_Leaves.java
41 lines (38 loc) · 1.12 KB
/
404_Sum_of_Left_Leaves.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import java.util.Stack;
import javax.swing.tree.TreeNode;
/**
* 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;
if (root.left != null
&& root.left.left == null
&& root.left.right == null)
return root.left.val + sumOfLeftLeaves(root.right);
return sumOfLeftLeaves(root.left) + sumOfLeftLeaves(root.right);
} */
public int sumOfLeftLeaves(TreeNode root) {
int res = 0;
Stack<TreeNode> stack = new Stack<>();
stack.push(root);
while (!stack.isEmpty()) {
TreeNode node = stack.pop();
if (node != null) {
if (node.left != null
&& node.left.left == null
&& node.left.right == null)
res += node.left.val;
stack.push(node.right);
stack.push(node.left);
}
}
return res;
}
}