▲ | ojr 5 days ago | |||||||
its not a nearest neighbor problem that is incorrect, they expect candidates to have the heap solution on the first go, you have 10-15 minutes to answer, no time to optimize, cheaters get blacklisted, welcome to the new reality | ||||||||
▲ | esafak 5 days ago | parent | next [-] | |||||||
Finding the k points closest to the origin (or any other point) is obviously the k-nearest neighbors problem. What algorithm and data structure you use does not change that. https://en.wikipedia.org/wiki/Nearest_neighbor_search edit: If you want to use a heap, the general solution is to define an appropriate cost function; e.g., the p-norm distance to a reference point. Use a union type with the distance (for the heap's comparisons) and the point itself. | ||||||||
| ||||||||
▲ | butlike 5 days ago | parent | prev [-] | |||||||
Wish it was more how you think than requiring boolean correct/incorrect answer on the whiteboard after 15min. |