All Nodes Distance K In Binary Tree
1. Given the root of a binary tree.Input Format
2. The value of a target node target, and an integer k.
3. You have return an array of the values of all nodes that have a distance k from the target node.
Input is managed for you.Output Format
Output is managed for you.Question Video
1. The number of nodes in the tree is in the range [1, 10000].Sample Input
2. -1000 <= Node.val <= 1000
3. All the values Node.val are unique.
4. target is the value of one of the nodes in the tree.
5. 0 <= k <= 1000
15Sample Output
4
2
1
-1
-1
3
-1
-1
6
5
-1
-1
7
-1
-1
2 2
6
-
Asked in Companies
-
Related Topics
Video Solution
Code Solution
{ }
{ }
Run