Question:
What is the basic idea of tree search algorithms?
Author: Christian NAnswer:
1. Given a (weighted) graph problem representing an abstraction of the real-world problem and a search strategy 2. Starting from the initial node 3. Simulate the exploration of the graph by iterating the following steps: Select a node for expansion according to the strategy Return the solution path, if the selected node is the goal one Generate successors of selected node (a.k.a. expand states) 4. Return failure, if all nodes were checked and no solution found
0 / 5 Â (0 ratings)
1 answer(s) in total