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:

              5
             / \
            4   5
           / \   \
          1   1   5

Output:

2

Example 2:

Input:

              1
             / \
            4   5
           / \   \
          4   4   5

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

Was this helpful?