Problem Description
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.
Key Insights
- The problem involves finding nodes at a specific distance from a given target node in a binary tree.
- The binary tree structure allows for traversal in multiple ways (DFS or BFS).
- A two-step approach is useful: first, identify the target node and create a mapping of each node to its parent, then perform a BFS or DFS to find all nodes at distance k from the target.
Space and Time Complexity
Time Complexity: O(N), where N is the number of nodes in the binary tree. Each node is visited once. Space Complexity: O(N), for storing the parent mapping and the result list.
Solution
To solve the problem, we use a combination of depth-first search (DFS) and breadth-first search (BFS). First, we traverse the tree to map each node to its parent. Then, we perform a BFS starting from the target node, exploring all nodes at a distance k by keeping track of the visited nodes.