687 Longest Univalue Path
1. Question
Note: The length of path between two nodes is represented by the number of edges between them.
Example 1:
Input:
Output:
Example 2:
Input:
Output:
Note: The given binary tree has not more than 10000 nodes. The height of the tree is not more than 1000.
2. Implementation
(1) DFS + Recursion
3. Time & Space Complexity
DFS + Recursion: 时间复杂度O(n), 空间复杂度O(n)
Last updated