-
Notifications
You must be signed in to change notification settings - Fork 1
/
513.find-bottom-left-tree-value.java
71 lines (69 loc) · 1.72 KB
/
513.find-bottom-left-tree-value.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
* @lc app=leetcode id=513 lang=java
*
* [513] Find Bottom Left Tree Value
*/
// @lc code=start
/**
* 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;
* }
* }
*/
class Solution {
public int findBottomLeftValue(TreeNode root) {
int res = 0;
Deque<TreeNode> dq = new ArrayDeque<>();
if (root == null) {
return res;
}
dq.add(root);
while (!dq.isEmpty()) {
int size = dq.size();
for (int i = 0; i < size; i++) {
TreeNode cur = dq.pollFirst();
if (i == 0) {
res = cur.val;
}
if (cur.left!= null) {
dq.add(cur.left);
}
if (cur.right != null) {
dq.add(cur.right);
}
}
}
return res;
}
}
// @lc code=end
/* class Solution {
int res = 0;
int max_depth = Integer.MIN_VALUE;
public int findBottomLeftValue(TreeNode root) {
traverse(root, 0);
return res;
}
private void traverse(TreeNode root, int depth) {
if (root == null) {
return;
}
if (root.left == null && root.right == null) {
if (depth > max_depth) {
res = root.val;
max_depth = depth;
}
}
traverse(root.left, depth + 1);
traverse(root.right, depth + 1);
}
} */