Print Nodes K Distance Away
easy
1. You are given a partially written BinaryTree class. 2. You are given a value data and a value k. 3. You are required to complete the body of printKNodesFar function. The function is expected to print all nodes which are k distance away in any direction from node with value equal to data. 4. Input is managed for you.
Constraints
None
Format
Input
Input is managed for you
Output
All nodes which are k distance away in any direction from node with value equal to data, each in a separate line
Example
Sample Input
19
50 25 12 n n 37 30 n n n 75 62 n 70 n n 87 n n
37
2
Sample Output
12
50
Question Video