Question 9666 – C-Programming
November 23, 2023
Question 7869 – Algorithms
November 23, 2023
Question 9666 – C-Programming
November 23, 2023
Question 7869 – Algorithms
November 23, 2023

Question 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
(a)-(iv), (b)-(iii), (c)-(ii), (d)-(i)
B
(a)-(i), (b)-(iv), (c)-(iii), (d)-(ii)
C
(a)-(iv), (b)-(i), (c)-(ii), (d)-(iii)
D
(a)-(i), (b)-(ii), (c)-(iii), (d)-(iv)
0 0 votes
Article Rating
Subscribe
Notify of
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x
error: Alert: Content selection is disabled!!