set-3
134. ______ is similar to Hill climbing searching but with revising or backtracking.
135. The best first search uses the concept of a ______ and heuristic search.
136. ______ is the time and ______ is the space complexity of Best first search. Where b= branching factor and d= depth.
137. Greedy best first search evaluates nodes by using only ______
138. Why greedy best first search is not complete?
139. ______ is the time and ______ is the space complexity of Greedy Best first search.
140. The main idea of A* searching is to a ______
141. Evaluation function is ______ for A* searching, where, g(n) - cost so far to reach n h(n) - estimated cost to goal from n f(n) - estimated total cost of path through n to goal.
142. A* search uses an ______ heuristic; that is, h(n) < h*(n) where h*(n) is the true cost from ‘n’.
143. When should A* searching terminate?
144. A* search theorem states that:
145. ______ is the time and ______ is the space complexity of A* Search. Where b= branching factor and d= depth
146. A* is an admissible algorithm that ______ optimal solution.
147. The main application of A* Search Algorithm is: Path/ Routing problems can be solved by using A* Searching algorithm.
148. A* using Tree search is optimal if heuristic is ______.
149. A* using Graph search is optimal if heuristic is ______.
150. ______ is sometimes called greedy local search because it grabs a good neighbor state without thinking ahead about where to go next.
Last updated