0
2.2kviews
Explain Breadth First Search
1 Answer
| written 7.2 years ago by |
Breadth First Search searches breadth-wise in the problem space. Breadth-First search is like traversing a tree where each node is a state which may be a potential candidate for solution.
It expands nodes from the root of the tree and then generates one level of the tree at a time …