This is a temporary, read-only recovery of the chessprogrammingwiki while a longer-term plan is worked out. Editing is not possible right now, but will be again soon.
Chess Programming Wiki All pages Other namespaces

Depth-First

Home * Search * Depth-First

Depth-First Node order 1Depth-First Node order 1


  1. Depth-first search from Wikipedia↩︎

Depth-First refers to node traversal algorithms of tree like data structures like search trees. Depth-first examines child nodes before siblings and can easily implemented with recursion using a stack of nodes. It therefor has moderate memory requirements, since only one path from the root to a leaf is kept in memory, which grows proportional with search depth.

Contents
  1. Depth-Limited Search
  2. See also
  3. Publications
    1. 1970 ...
    2. 1980 ...
    3. 1990 ...
    4. 2000 ...
    5. 2010 ...
  4. External Links
  5. References

`Breadth-First Node order `` `Breadth-First Node order 1  

The depth-limited search, to make the depth-first search find a solution within the depth limit, is the most common search algorithm in computer chess, as described in minimax, alpha-beta and its enhancements. Iterative deepening is a state space search strategy in which a depth-limited search is run repeatedly, with a cumulative node order effectively breadth-first.

See also

Publications

1970 ...

1980 ...

1990 ...

2000 ...

2010 ...

Watch on YouTube

References

Up one Level


  1. Breadth-first search from Wikipedia↩︎

  2. quoted by Hans Berliner, Gordon Goetsch (1985). A Study of Search Methods : The Effect of Constraint Satisfaction and Adventurousness. pdf↩︎

  3. Paper is mentioned by Richard Korf at Judea Pearl Symposium, 2010↩︎

  4. Dovetailing (computer science) from Wikipedia↩︎

Categories: Flat Earth Society

What links here

Contributors: GerdIsenberg.