Lowest Common Ancestor of List of Values - Amazon Top Interview Questions


Problem Statement :


Given a binary tree root containing unique values and a list of unique integers values, return the lowest common ancestor node that contains all values in values. You can assume that a solution exists.

Constraints

n ≤ 100,000 where n is the number of nodes in root

Example 1

Input

root = [1, [2, null, null], [3, [4, [6, null, null], [7, null, null]], [5, null, null]]]

values = [5, 6, 7]

Output

[3, [4, [6, null, null], [7, null, null]], [5, null, null]]



Solution :



title-img




                        Solution in C++ :

Tree* tra(Tree* root, unordered_set<int>& s) {
    if (!root) return root;
    if (s.find(root->val) != s.end()) return root;
    Tree* x = tra(root->left, s);
    Tree* y = tra(root->right, s);
    if (x and y) return root;
    return x ? x : y;
}
Tree* solve(Tree* root, vector<int>& values) {
    unordered_set<int> s(values.begin(), values.end());
    return tra(root, s);
}
                    


                        Solution in Java :

import java.util.*;

/**
 * public class Tree {
 *   int val;
 *   Tree left;
 *   Tree right;
 * }
 */
class Solution {
    private int[] values;
    private Set<Integer> set = new HashSet();
    public Tree solve(Tree root, int[] values) {
        this.values = values;
        Queue<Tree> q = new LinkedList();
        Tree ret = null;
        q.offer(root);
        while (!q.isEmpty()) {
            int size = q.size();
            for (int x = 0; x < size; x++) {
                Tree temp = q.poll();
                fillSet();
                recurse(temp);
                if (!set.isEmpty())
                    continue;
                ret = temp;
                if (temp.left != null) {
                    q.offer(temp.left);
                }
                if (temp.right != null) {
                    q.offer(temp.right);
                }
            }
        }
        return ret;
    }
    public void recurse(Tree root) {
        if (root == null || set.isEmpty())
            return;
        if (set.contains(root.val)) {
            set.remove(root.val);
        }
        recurse(root.left);
        recurse(root.right);
    }
    public void fillSet() {
        for (int v : values) {
            set.add(v);
        }
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, root, values):
        S = set(values)

        def dfs(node):
            if None == node:
                return None

            if node.val in S:
                return node

            left = dfs(node.left)
            right = dfs(node.right)

            if left and right:
                return node
            else:
                return left or right

        return dfs(root)
                    


View More Similar Problems

Insert a node at a specific position in a linked list

Given the pointer to the head node of a linked list and an integer to insert at a certain position, create a new node with the given integer as its data attribute, insert this node at the desired position and return the head node. A position of 0 indicates head, a position of 1 indicates one node away from the head and so on. The head pointer given may be null meaning that the initial list is e

View Solution →

Delete a Node

Delete the node at a given position in a linked list and return a reference to the head node. The head is at position 0. The list may be empty after you delete the node. In that case, return a null value. Example: list=0->1->2->3 position=2 After removing the node at position 2, list'= 0->1->-3. Function Description: Complete the deleteNode function in the editor below. deleteNo

View Solution →

Print in Reverse

Given a pointer to the head of a singly-linked list, print each data value from the reversed list. If the given list is empty, do not print anything. Example head* refers to the linked list with data values 1->2->3->Null Print the following: 3 2 1 Function Description: Complete the reversePrint function in the editor below. reversePrint has the following parameters: Sing

View Solution →

Reverse a linked list

Given the pointer to the head node of a linked list, change the next pointers of the nodes so that their order is reversed. The head pointer given may be null meaning that the initial list is empty. Example: head references the list 1->2->3->Null. Manipulate the next pointers of each node in place and return head, now referencing the head of the list 3->2->1->Null. Function Descriptio

View Solution →

Compare two linked lists

You’re given the pointer to the head nodes of two linked lists. Compare the data in the nodes of the linked lists to check if they are equal. If all data attributes are equal and the lists are the same length, return 1. Otherwise, return 0. Example: list1=1->2->3->Null list2=1->2->3->4->Null The two lists have equal data attributes for the first 3 nodes. list2 is longer, though, so the lis

View Solution →

Merge two sorted linked lists

This challenge is part of a tutorial track by MyCodeSchool Given pointers to the heads of two sorted linked lists, merge them into a single, sorted linked list. Either head pointer may be null meaning that the corresponding list is empty. Example headA refers to 1 -> 3 -> 7 -> NULL headB refers to 1 -> 2 -> NULL The new list is 1 -> 1 -> 2 -> 3 -> 7 -> NULL. Function Description C

View Solution →