Bidirectional Search

Bidirectional search is a graph search algorithm that finds a shortest path from an initial vertex to a goal vertex in a directed graph. It runs two simultaneous searches: one forward from the initial state, and one backward from the goal, stopping when the two meet in the middle. The reason for this approach is that in many cases it is faster: for instance, in a simplified model of search problem complexity in which both searches expand a tree with branching factor b, and the distance from start to goal is d, each of the two searches has complexity O(bd/2) (in Big O notation), and the sum of these two search times is much less than the O(bd) complexity that would result from a single search from the beginning to the goal.

As in A* search, bi-directional search can be guided by a heuristic estimate of the remaining distance to the goal (in the forward tree) or from the start (in the backward tree).

Ira Pohl was the first one to design and implement a bi-directional heuristic search algorithm. Andrew Goldberg and other explain how the correct termination for the bidirectional Dijkstra’s Algorithm has to be.

Read more about Bidirectional Search:  Description, Approaches For Bidirectional Heuristic Search

Famous quotes containing the word search:

    The search for happiness ... always ends in the ghastly sense of the bottomless nothingness into which you will inevitably fall if you strain any further.
    —D.H. (David Herbert)