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:
The given tree is non-empty.
Each node in the tree has unique values
0 <= node.val <= 500.The
targetnode is a node in the tree.0 <= K <= 1000.
Previous852. Peak Index in a Mountain ArrayNext889. Construct Binary Tree from Preorder and Postorder Traversal
Last updated
Was this helpful?