forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
_965.java
59 lines (56 loc) · 1.1 KB
/
_965.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
package com.fishercoder.solutions;
import com.fishercoder.common.classes.TreeNode;
/**
* 965. Univalued Binary Tree
*
* A binary tree is univalued if every node in the tree has the same value.
*
* Return true if and only if the given tree is univalued.
*
* Example 1:
*
* 1
* / \
* 1 1
* / \ \
* 1 1 1
*
* Input: [1,1,1,1,1,null,1]
* Output: true
*
*
* Example 2:
* 2
* / \
* 2 2
* / \
* 5 2
*
* Input: [2,2,2,5,2]
* Output: false
*
*
* Note:
*
* The number of nodes in the given tree will be in the range [1, 100].
* Each node's value will be an integer in the range [0, 99].
*/
public class _965 {
public static class Solution1 {
public boolean isUnivalTree(TreeNode root) {
if (root == null) {
return true;
}
return dfs(root, root.val);
}
private boolean dfs(TreeNode root, int value) {
if (root == null) {
return true;
}
if (root.val != value) {
return false;
}
return dfs(root.left, value) && dfs(root.right, value);
}
}
}