0863. All Nodes Distance K in Binary Tree
Last updated
Last updated
https://leetcode.com/problems/all-nodes-distance-k-in-binary-tree
Given the root
of a binary tree, the value of a target node target
, and an integer k
, return an array of the values of all nodes that have a distance k
from the target node.
You can return the answer in any order.
Example 1:
Example 2:
Constraints:
The number of nodes in the tree is in the range [1, 500]
.
0 <= Node.val <= 500
All the values Node.val
are unique.
target
is the value of one of the nodes in the tree.
0 <= k <= 1000