Computer Laboratory 2 Oral Question Answer Set I
Computer Laboratory 2 Oral Question Answer Set I
ANSWER
Set I
BFS
Uniform cost search
DFS
Depth limited search
Iterative deepening search
Bidirectional search
3. What is BFS?
BFS DFS
BFS is slower than DFS DFS is faster than BFS
Data structure used is Queue Data structure used is Stack
FIFO LIFO
Requires more memory Require less memory
Backtracking is not possible Backtracking is possible
8. Time complexity of uninformed search
The fringe list, often called the "open list", is a list of all
locations immediately adjacent to areas that have already
been explored and evaluated (the closed list).
The closed list is a record of all locations which have
been explored and evaluated by the algorithm.
Open List - A list of all the nodes visited but not yet explored.
Closed List - A list of all the nodes visited and completely explored.
17. What is unification algorithm?
24. What is k mean clustering?