How do I traverse a KDTree to find k nearest neighbors?
For the time being, I've settled on the sub-optimal solution of executing a series of progressively larger range searches until K nodes have been found.
Adding to @Ashish's answer, you can use a max-heap in the following manner:
1) Build a max-heap of the first k elements (arr[0] to arr[k-1]) of the given array.
This step is O(k). Then
2) For each element, after the kth element (arr[k] to arr[n-1]), compare it with
root of the max-heap.
a) If the element is smaller than the root then make it root
and call heapify for max-heap.
b) Else ignore it.
The step 2 is O((n-k)*log(k)).
3) Finally, the max-heap has k smallest elements and root of the heap
is the kth smallest element.
Time Complexity: O(k + (n-k)*log(k)) without sorted output. If sorted output is needed then O(k + (n-k)*log(k) + k*log(k)).
You can maintain a max heap of size k (k is the count of nearest neighbors which we wanted to find).
Start from the root node and insert the distance value in the max heap node. Keep on searching in k-d tree using dimensional splitting , criteria and keep updating Max Heap tree.
https://gopalcdas.wordpress.com/2017/05/24/construction-of-k-d-tree-and-using-it-for-nearest-neighbour-search/
~Ashish