Given a non-empty binary search tree (BST) and a target value, find k
values in the BST that are the closest to the target.
"target": 2
"k": 2
Output:
[1, 2]
As we can see the target value is 2 and [1, 2] are the nearest values (in terms of the absolute difference between target value and node values). Besides this, the answer [2, 3] is also correct, because abs(2 - 1) = abs(2 - 3). You can return any of them. You can also return your answer in any order, that is [1, 2] or [2, 1], both are correct.
k
nearest values to the given target value.Constraints:
k
<= n
n - 1
We have provided one solution. We will refer to the number of nodes in the given binary tree by n
and number of edges by m
.
k
points in the BST that are the closest to the given target value.k
to store the closest points.k
.k
, we check whether the current value is closer to the target value than the first value (that is the head) of the priority queue.O(n * log(k)).
We are traversing the entire input tree and at the same time inserting nodes in the priority queue if they have a possibility to be part of the final answer. So, the time needed for this is O(n * log(k)).
O(n + k).
We create a Priority Queue of size k
to store the closest points to the target value. Besides this, we perform an inorder tree traversal which takes O(n) stack space due to recursion. So, the total auxiliary space used is O(n + k).
O(n + m + k).
Space taken by input: O(n + m).
Auxiliary space used: O(n + k).
Space used by output: O(k).
Hence, total space complexity will be O(n + m + k).
We hope that these solutions to the Closest values in a BST problem have helped you level up your coding skills. You can expect problems like these at top tech companies like Amazon and Google.
If you are preparing for a tech interview at FAANG or any other Tier-1 tech company, register for Interview Kickstart's FREE webinar to understand the best way to prepare.
Interview Kickstart offers interview preparation courses taught by FAANG+ tech leads and seasoned hiring managers. Our programs include a comprehensive curriculum, unmatched teaching methods, and career coaching to help you nail your next tech interview.
We offer 18 interview preparation courses, each tailored to a specific engineering domain or role, including the most in-demand and highest-paying domains and roles, such as:
To learn more, register for the FREE webinar.
Given a non-empty binary search tree (BST) and a target value, find k
values in the BST that are the closest to the target.
"target": 2
"k": 2
Output:
[1, 2]
As we can see the target value is 2 and [1, 2] are the nearest values (in terms of the absolute difference between target value and node values). Besides this, the answer [2, 3] is also correct, because abs(2 - 1) = abs(2 - 3). You can return any of them. You can also return your answer in any order, that is [1, 2] or [2, 1], both are correct.
k
nearest values to the given target value.Constraints:
k
<= n
n - 1
We have provided one solution. We will refer to the number of nodes in the given binary tree by n
and number of edges by m
.
k
points in the BST that are the closest to the given target value.k
to store the closest points.k
.k
, we check whether the current value is closer to the target value than the first value (that is the head) of the priority queue.O(n * log(k)).
We are traversing the entire input tree and at the same time inserting nodes in the priority queue if they have a possibility to be part of the final answer. So, the time needed for this is O(n * log(k)).
O(n + k).
We create a Priority Queue of size k
to store the closest points to the target value. Besides this, we perform an inorder tree traversal which takes O(n) stack space due to recursion. So, the total auxiliary space used is O(n + k).
O(n + m + k).
Space taken by input: O(n + m).
Auxiliary space used: O(n + k).
Space used by output: O(k).
Hence, total space complexity will be O(n + m + k).
We hope that these solutions to the Closest values in a BST problem have helped you level up your coding skills. You can expect problems like these at top tech companies like Amazon and Google.
If you are preparing for a tech interview at FAANG or any other Tier-1 tech company, register for Interview Kickstart's FREE webinar to understand the best way to prepare.
Interview Kickstart offers interview preparation courses taught by FAANG+ tech leads and seasoned hiring managers. Our programs include a comprehensive curriculum, unmatched teaching methods, and career coaching to help you nail your next tech interview.
We offer 18 interview preparation courses, each tailored to a specific engineering domain or role, including the most in-demand and highest-paying domains and roles, such as:
To learn more, register for the FREE webinar.
Attend our free webinar to amp up your career and get the salary you deserve.