863. All Nodes Distance K in Binary Tree

We are given a binary tree (with root node root), a target node, and an integer value K.

Return a list of the values of all nodes that have a distance K from the target node. The answer can be returned in any order.

Example 1:

Note:

  1. The given tree is non-empty.

  2. Each node in the tree has unique values 0 <= node.val <= 500.

  3. The target node is a node in the tree.

  4. 0 <= K <= 1000.

Last updated

Was this helpful?