Closest BST Values II
Given a BST, output the k closest values in this BST to x. Sort the output by value.
The output set is guaranteed to be unique.
Do not convert the BST to a list.
bst = <See explanation> x = 7 k = 4
[5, 6, 8, 10]

All four numbers in the output are within 3 away from 7.
1 <= k <= n <= 10^5