Top "Search-tree" questions

A tree shaped data structure which allows for storing orderable data so it may be efficiently searched later.

Knight's Shortest Path on Chessboard

I've been practicing for an upcoming programming competition and I have stumbled across a question that I am just completely …

chess shortest-path minimization search-tree
How to Find the Branching Factor of a Tree

A particular search tree has 6 nodes at level 3. At the next level, there are 24 nodes. What is the branching factor …

algorithm binary-search-tree search-tree
Completeness of depth-first search

I quote from Artificial Intelligence: A Modern Approach: The properties of depth-first search depend strongly on whether the graph-search or …

tree artificial-intelligence graph-theory graph-traversal search-tree