AI MCQ #235: Best-First search can be implemented using the following data structure.

Q235. Best-First search can be implemented using the following data structure.

  • a) Queue
  • b) Stack
  • c) Priority Queue
  • d) Circular Queue

✅ Correct Answer: C) Priority Queue

Explanation: Best-first search can be implemented within our general search framework via a priority queue, a data structure that will maintain the fringe in ascending order of f-values.