in Algorithms edited by
865 views
1 vote
1 vote

Match $\text{List I}$ with $\text{List II}$

$\begin{array}{llll} & \text{List I} & & \text{List II} \\ (A) & \text{Greedy Best-First Search} & (I) & \text{Space complexity is O(d) where} \\ &&& \text{d=depth of the deepest optimal} \\ &&& \text{solution}  \\ (B) & A^* & (II) & \text{Incomplete even if the search space is} \\ &&& \text{finite}  \\ (C) & \text{Recursive Best-First Search} & (III) & \text{Optimal if optimal solution is} \\ &&& \text{reachable; otherwise, returns the best} \\ &&& \text{reachable optimal solution}  \\ (D) & \text{SMA*} & (IV) & \text{Computation and space complexity} \\ &&& \text{is too high} \end{array}$

Choose the correct answer from the options given below:

  1. $\text{A-II, B-IV, C-I, D-III}$
  2. $\text{A-II, B-III, C-I, D-IV}$
  3. $\text{A-III, B-II, C-IV, D-I}$
  4. $\text{A-III, B-IV, C-II, D-I}$
in Algorithms edited by
865 views

1 Answer

1 vote
1 vote

Greedy Best-First Search its greedy  so choose local best ,  soln not guaranteed hence incomplete

hence A-II

A* is optimal & complete   but Computation and space complexity too high

hence B-IV

 RBFS retains more information in memory, but only uses O (bd ) memory

C-I

Simplified Memory Bounded A* ( like A* Optimal if optimal solution is reachable else  since bounded by memory,

                                                               returns the best reachable optimal solution)

D-III

 

hence  right ans is option A

https://pages.mtu.edu/~nilufer/classes/cs5811/2012-fall/lecture-slides/cs5811-ch03-search-b-informed-v2.pdf

Answer:

Related questions