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.
The 11 Neural “Power Patterns” For Solving Any FAANG Interview Problem 12.5X Faster Than 99.8% OF Applicants
The 2 “Magic Questions” That Reveal Whether You’re Good Enough To Receive A Lucrative Big Tech Offer
The “Instant Income Multiplier” That 2-3X’s Your Current Tech Salary
The 11 Neural “Power Patterns” For Solving Any FAANG Interview Problem 12.5X Faster Than 99.8% OF Applicants
The 2 “Magic Questions” That Reveal Whether You’re Good Enough To Receive A Lucrative Big Tech Offer
The “Instant Income Multiplier” That 2-3X’s Your Current Tech Salary
Just drop your name and email so we can send your Power Patterns PDF straight to your inbox. No Spam!
By sharing your contact details, you agree to our privacy policy.
Time Zone: Asia/Dhaka
We’ve sent the Power Patterns PDF to your inbox — it should arrive in the next 30 seconds.
📩 Can’t find it? Check your promotions or spam folder — and mark us as safe so you don’t miss future insights.
We’re hosting a private session where FAANG insiders walk through how they actually use these Power Patterns to crack interviews — and what sets top performers apart.
🎯 If you liked the PDF, you’ll love what we’re sharing next.
Time Zone: