Jan 29, 20100
Uninformed Search – BFS and DFS
Breadth first search is a strategy in which root node is expanded first and then all successors are expanded. It means that all the nodes at a given depth are expanded before any other node at the next depth level can be expanded. While expanding the nodes the information of the successors needs to be stored in the memory so that in the next iteration those particular nodes can be expanded.
For the given tree the BFS expansion will be :
1 2 3 4 5 6 7 8 9 10 11 12
Read more…

