Greedy Best First Search
Consider a Best-First Search algorithm applied to a search space with a branching factor of 3. If the maximum depth of the search space is 5, how many nodes will be expanded in the worst case scenario?
If h1 and h2 are two admissible heuristics for a given problem, then heuristic h3(n) = max(h1(n), h2(n)) for all states, n, must also be admissible.
Consider the problem of getting from Iasi to Fagaras in the simplified map of Romania (Figure 1). Which of the following will occur using BFS?
In a Best-First Search algorithm, which of the following evaluation functions is not suitable for solving a maze navigation problem?