Solution: Cousins in Binary Tree
C# solution for the Cousins in Binary Tree problem using the Tree Breadth-First Search pattern.
We'll cover the following...
We'll cover the following...
Statement
Given the root of a binary tree root and two distinct values x and y, determine whether the nodes with values x and y are cousins.
Two nodes are considered cousins if they are at the same depth in the tree but have different parent nodes. Return true if the nodes are cousins, otherwise return false.
Note: The values
xandyare guaranteed to appear somewhere in the tree.
Constraints:
The number of nodes in the tree is in the range
...