Medium
,Tree
,Binary Tree
,DFS
1026. Maximum Difference Between Node and Ancestor
Given the root
of a binary tree, find the maximum value v
for which there exist different nodes a
and b
where v = |a.val - b.val|
and a
is an ancestor of b
.
A node a
is an ancestor of b
if either: any child of a
is equal to b
or any child of a
is an ancestor of b
.
Example 1:
Example 2:
Constraints:
[2, 5000]
.Node.val
<= 105Kobe Dec 9, 2022
玉山 Dec 10, 2022
Yen-Chi ChenFri, Dec 9, 2022
JimFri, Dec 9, 2022
MarsgoatTue, Feb 21, 2023