-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleetCode_1026.java
More file actions
67 lines (60 loc) · 1.61 KB
/
Copy pathleetCode_1026.java
File metadata and controls
67 lines (60 loc) · 1.61 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
/**
* 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 {
int maxDiff = 0 ;
public int maxAncestorDiff(TreeNode root) {
if(root == null){
return 0;
}
preOrder(root);
return maxDiff;
}
void preOrder(TreeNode root){
List<TreeNode> list = new ArrayList<>();
getChildren(root, list);
for(int i=1; i<list.size();i++){
if(Math.abs((root.val - list.get(i).val)) > maxDiff){
maxDiff = Math.abs((root.val - list.get(i).val));
}
}
maxAncestorDiff(root.left);
maxAncestorDiff(root.right);
}
void getChildren(TreeNode root, List<TreeNode> list){
if(root == null){
return ;
}
list.add(root);
getChildren(root.left, list);
getChildren(root.right, list);
}
}
*/
class Solution {
int maxDiff = 0 ;
public int maxAncestorDiff(TreeNode root) {
return dfs(root, root.val, root.val);
}
int dfs(TreeNode root, int max, int min){
if(root == null){
return max - min;
}
max = Math.max(max, root.val);
min = Math.min(min, root.val);
return Math.max(dfs(root.left, max, min), dfs(root.right, max, min));
}
}