Programming
November 23, 2023Question 7869 – Algorithms
November 23, 2023Question 1261 – Algorithms
Match List-1 with List-2 and choose the correct answer from the code given below
List 1 List 2 (a) Greedy Best-first Search (i) Selects a node for expansion if optimal path to that node has been found (b) A* Search (ii) Avoids substantial overhead associated with keeping the sorted queue of nodes (c) Recursive Best-First Search (iii) Suffers from excessive node generation (d) Iterative-deepening A* Search (iv) Time complexity depends upon the quality of heuristic
Code:
Correct Answer: B
Question 206 Explanation:
→ Greedy Best-first Search: Selects a node for expansion if optimal path to that node has been found. Best-first search is a search algorithm which explores a graph by expanding the most promising node chosen according to a specified rule. Best-first search as estimating the promise of node n by a “heuristic evaluation function f(n) which, in general, may depend on the description of n, the description of the goal, the information gathered by the search up to that point, and most important, on any extra knowledge about the problem domain.”
→ A* Search: Time complexity depends upon the quality of heuristic.
→ Recursive Best-First Search: Suffers from excessive node generation. RBFS depends on how widely the promising nodes are separated in the search tree, and is harder to anticipate.
→ Iterative-deepening A* Search: Avoids substantial overhead associated with keeping the sorted queue of nodes.
→ A* Search: Time complexity depends upon the quality of heuristic.
→ Recursive Best-First Search: Suffers from excessive node generation. RBFS depends on how widely the promising nodes are separated in the search tree, and is harder to anticipate.
→ Iterative-deepening A* Search: Avoids substantial overhead associated with keeping the sorted queue of nodes.
(a)-(iv), (b)-(iii), (c)-(ii), (d)-(i)
(a)-(i), (b)-(iv), (c)-(iii), (d)-(ii)
(a)-(iv), (b)-(i), (c)-(ii), (d)-(iii)
(a)-(i), (b)-(ii), (c)-(iii), (d)-(iv)
Subscribe
Login
0 Comments