What is the space complexity of Breadth-first search, consider b as branching factor and d as depth of the search tree?
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
What is the space complexity of Breadth-first search, consider b as branching factor and d as depth of the search tree?
What is the space complexity of Breadth-first search, consider b as branching factor and d as depth of the search tree? O(d^2b) O(b^(d+1)) O(b^2d) O(b^2)