-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathSecondMinimumNodeInABinaryTree671.java
More file actions
76 lines (70 loc) · 1.94 KB
/
SecondMinimumNodeInABinaryTree671.java
File metadata and controls
76 lines (70 loc) · 1.94 KB
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
72
73
74
75
/**
* Given a non-empty special binary tree consisting of nodes with the
* non-negative value, where each node in this tree has exactly two or zero
* sub-node. If the node has two sub-nodes, then this node's value is the
* smaller value among its two sub-nodes.
*
* Given such a binary tree, you need to output the second minimum value in the
* set made of all the nodes' value in the whole tree.
*
* If no such second minimum value exists, output -1 instead.
*
* Example 1:
* Input:
* 2
* / \
* 2 5
* / \
* 5 7
*
* Output: 5
* Explanation: The smallest value is 2, the second smallest value is 5.
*
* Example 2:
* Input:
* 2
* / \
* 2 2
*
* Output: -1
* Explanation: The smallest value is 2, but there isn't any second smallest
* value.
*/
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class SecondMinimumNodeInABinaryTree671 {
public int findSecondMinimumValue(TreeNode root) {
if (root == null) return -1;
int[] cache = new int[]{-1, -1};
dfs(root, cache, root.val);
if (cache[0] == -1 || cache[1] == -1) return -1;
return Math.max(Math.max(cache[0], -1), cache[1]);
}
private void dfs(TreeNode root, int[] cache, int min) {
if (root == null) return;
int val = root.val;
if (cache[0] != val && cache[1] != val) {
if (cache[0] == -1) {
cache[0] = val;
} else if (cache[1] == -1) {
cache[1] = val;
} else {
if (cache[0] > val) {
cache[0] = val;
} else if (cache[1] > val) {
cache[1] = val;
}
}
}
if (val > min) return;
dfs(root.left, cache, min);
dfs(root.right, cache, min);
}
}