Which one is optimal?(provides an optimal solution)
1 BFS
2 DFS
Answer:1
Which one is right?
1 Build the tree in memory first and apply different search algorithm to find the solution.
2 Apply different search algorithm and build the tree as the search goes.
On the other words, choose the algorithm first and load the tree dynamically.
Answer:2
Blind Search(Uninformed Search) includes:
BFS
DFS
Limited depth Search
Iterative deepening
Uniform cost Search