Class Solution
-
- All Implemented Interfaces:
public final class Solution993 - Cousins in Binary Tree\.
Easy
Given the
rootof a binary tree with unique values and the values of two different nodes of the treexandy, returntrueif the nodes corresponding to the valuesxandyin the tree are cousins , orfalseotherwise.Two nodes of a binary tree are cousins if they have the same depth with different parents.
Note that in a binary tree, the root node is at the depth
0, and children of each depthknode are at the depthk + 1.Example 1:
Input: root = 1,2,3,4, x = 4, y = 3
Output: false
Example 2:
Input: root = 1,2,3,null,4,null,5, x = 5, y = 4
Output: true
Example 3:
Input: root = 1,2,3,null,4, x = 2, y = 3
Output: false
Constraints:
The number of nodes in the tree is in the range
[2, 100].1 <= Node.val <= 100Each node has a unique value.
x != yxandyare exist in the tree.
-
-
Constructor Summary
Constructors Constructor Description Solution()
-