Medium
,Tree
,DP
,DFS
1372. Longest ZigZag Path in a Binary Tree
You are given the root
of a binary tree.
A ZigZag path for a binary tree is defined as follow:
Zigzag length is defined as the number of nodes visited - 1. (A single node has a length of 0).
Return the longest ZigZag path contained in that tree.
Example 1:
Example 2:
Example 3:
Constraints:
Node.val
<= 100MarsgoatApr 19, 2023
Ron ChenWed, Apr 19, 2023