December 28, 2015
Beam search nearest neighbors
A common problem is finding the nearest neighbors of a given object in some search space. Beam search is an “anytime” heuristic search algorithm which very efficiently accomplishes this.
Imagine we have a set of N nodes, each randomly “closest” (connected by an edge) to n other nodes. The algorithm works as follows:
- Pick a node; paint it red.
- Paint its neighbors grey. Also paint the neighbors for each of those neighbors.
- “Fix” the edges of the red node by connecting it to the closest of these grey nodes.
- Repeat for each node.
Click to proceed with the algorithm:
Number of nodes:
Number of neighbors to find:
Iterations: 0 /