SEARCH
You are in browse mode. You must login to use MEMORY

   Log in to start


From course:

Intro to AI 1

» Start this Course
(Practice similar questions for free)
Question:

What is the basic idea of tree search algorithms?

Author: Christian N



Answer:

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