Find k closest values in a BST
Company: LinkedIn
Role: Software Engineer
Category: Coding & Algorithms
Difficulty: Medium
Interview Round: Technical Screen
Quick Answer: This question evaluates a candidate's understanding of binary search tree properties, iterator-based traversal (predecessor/successor), and algorithmic complexity reasoning by requiring selection of k values nearest to a real target under O(log n + k) expected time and O(h) extra space constraints.