Q240. What is the space complexity of Greedy search?
✅ Correct Answer: D) O(bm)
Explanation: O(bm) is the space complexity where b is the branching factor and m is the maximum depth of the search tree. Since this algorithm resembles the DFS.
Q240. What is the space complexity of Greedy search?
✅ Correct Answer: D) O(bm)
Explanation: O(bm) is the space complexity where b is the branching factor and m is the maximum depth of the search tree. Since this algorithm resembles the DFS.