Binary Tree Nodes Around Radius - Amazon Top Interview Questions


Problem Statement :


You are given a binary tree root containing unique integers and integers target and radius. Return a sorted list of values of all nodes that are distance radius away from the node with value target.

Constraints

1 ≤ n ≤ 100,000 where n is number of nodes in root
0 ≤ distance ≤ 100,000

Example 1

Input

root = [3, [5, null, null], [2, [1, [6, null, null], [9, null, null]], [4, null, null]]]
target = 4
radius = 2

Output

[1, 3]

Example 2

Input

root = [0, null, null]
target = 0
radius = 0

Output

[0]



Solution :



title-img




                        Solution in C++ :

void fill(Tree* root, unordered_map<int, vector<int>>& graph) {
    if (!root) return;
    if (root->left) {
        graph[root->val].push_back(root->left->val);
        graph[root->left->val].push_back(root->val);
        fill(root->left, graph);
    }
    if (root->right) {
        graph[root->val].push_back(root->right->val);
        graph[root->right->val].push_back(root->val);
        fill(root->right, graph);
    }
}
vector<int> solve(Tree* root, int target, int radius) {
    unordered_map<int, vector<int>> graph;
    fill(root, graph);

    vector<int> q{target}, tmp;
    if (!radius) return q;
    unordered_set<int> seen{target};
    while (!q.empty()) {
        for (auto p : q) {
            for (int c : graph[p]) {
                if (seen.count(c)) continue;
                seen.insert(c);
                tmp.push_back(c);
            }
        }
        q.clear(), q.swap(tmp);
        radius--;
        if (!radius) {
            sort(q.begin(), q.end());
            return q;
        }
    }
    return q;
}
                    




                        Solution in Python : 
                            
class Solution:
    def solve(self, root, target, radius):
        parent = defaultdict(lambda: None)
        self.start = None

        def postorder(root):
            if not root:
                return None
            if root.val == target:
                self.start = root
            l, r = postorder(root.left), postorder(root.right)
            parent[l] = parent[r] = root

            return root

        postorder(root)
        # level order traversal radius levels
        vis = set([None])
        q = deque()
        if self.start:
            q.append(self.start)
        cur_level = []

        while q and radius >= 0:
            cur_level_size = len(q)
            cur_level = []
            for _ in range(cur_level_size):
                cur = q.popleft()
                vis.add(cur)
                cur_level.append(cur.val)

                if parent[cur] not in vis:
                    q.append(parent[cur])
                if cur.left not in vis:
                    q.append(cur.left)
                if cur.right not in vis:
                    q.append(cur.right)

            radius -= 1

        return sorted(cur_level) if radius < 0 else []
                    


View More Similar Problems

Cycle Detection

A linked list is said to contain a cycle if any node is visited more than once while traversing the list. Given a pointer to the head of a linked list, determine if it contains a cycle. If it does, return 1. Otherwise, return 0. Example head refers 1 -> 2 -> 3 -> NUL The numbers shown are the node numbers, not their data values. There is no cycle in this list so return 0. head refer

View Solution →

Find Merge Point of Two Lists

This challenge is part of a tutorial track by MyCodeSchool Given pointers to the head nodes of 2 linked lists that merge together at some point, find the node where the two lists merge. The merge point is where both lists point to the same node, i.e. they reference the same memory location. It is guaranteed that the two head nodes will be different, and neither will be NULL. If the lists share

View Solution →

Inserting a Node Into a Sorted Doubly Linked List

Given a reference to the head of a doubly-linked list and an integer ,data , create a new DoublyLinkedListNode object having data value data and insert it at the proper location to maintain the sort. Example head refers to the list 1 <-> 2 <-> 4 - > NULL. data = 3 Return a reference to the new list: 1 <-> 2 <-> 4 - > NULL , Function Description Complete the sortedInsert function

View Solution →

Reverse a doubly linked list

This challenge is part of a tutorial track by MyCodeSchool Given the pointer to the head node of a doubly linked list, reverse the order of the nodes in place. That is, change the next and prev pointers of the nodes so that the direction of the list is reversed. Return a reference to the head node of the reversed list. Note: The head node might be NULL to indicate that the list is empty.

View Solution →

Tree: Preorder Traversal

Complete the preorder function in the editor below, which has 1 parameter: a pointer to the root of a binary tree. It must print the values in the tree's preorder traversal as a single line of space-separated values. Input Format Our test code passes the root node of a binary tree to the preOrder function. Constraints 1 <= Nodes in the tree <= 500 Output Format Print the tree's

View Solution →

Tree: Postorder Traversal

Complete the postorder function in the editor below. It received 1 parameter: a pointer to the root of a binary tree. It must print the values in the tree's postorder traversal as a single line of space-separated values. Input Format Our test code passes the root node of a binary tree to the postorder function. Constraints 1 <= Nodes in the tree <= 500 Output Format Print the

View Solution →