chapter 3b Flashcards
what is searching?
Examine different possible sequences of actions & states, and come up with specific sequence of operators/actions that will take you from the initial state to the goal state.
what is search tree?
is a representation in which nodes denote paths and branches connect paths.
what are the two function needed for conducting search?
generator and tester function
list algorithm evaluation?
completeness, optimality , time complexity and space complexity
Searching Algorithms / strategies
Informed and Uninformed search
what is breadth first search and implementation
Expand all nodes on a given level of the search tree before moving to the next level and FIFO
average number of child nodes for a given node called
branch factor
what is Depth-first search and implementation
Expand one of the node at the deepest level of the tree and LIFO
in DFS This algorithm may not terminate and go on infinitely on one path so what kind of solution you are going to use
cut-off depth
______is an operationally-effective piece of information on how to direct search in a problem space
Heuristic