2 - Uninformed Search Flashcards
All ________ problems can be stored in a ________.
All DISCRETE problems can be stored in a DISCRETE GRAPH.
________ search might not find a solution in cyclic ________.
TREE search might not find a solution in cyclic GRAPHS.
Graph search algorithms ________ nodes.
Graph search algorithms REMEMBER VISITED nodes.
Uninformed Search Techniques can only ________ and ________.
Uninformed Search Techniques can only PRODUCE NEXT STATES and CHECK WHETHER THE GOAL STATE IS REACHED.
Uninformed Search
There is no additional information besides the problem statement
Breadth-First Search (BFS) expands …
…the shallowest nodes first
BFS is most commonly implemented as a …
FIFO-Queue
BFS: Completeness
BFS is complete if depth and branching factor are finite
BFS: Optimality
BFS is not optimal in general ONLY optimal if cost is equal per step
BFS: Time/Space Complexity
BFS is O(b^d) time complex and O(b^(d-1)) space complex. For the frontier its space complexity is O(b^d)
Uniform-Cost Search (UCS) …
… expands the node with the lowest path cost
UCS: Completeness
UCS is complete if costs > 0
UCS: Optimality
UCS is optimal if cost >= eps in R+
UCS: Time/Space Complexity
TC = O(b^(1+[C*/eps]) = SC
Depth-First Search (DFS) expands …
… the deepest unexpanded node First
DFS is most commonly implemented as a …
LIFO-Queue
DFS: Completeness
DFS is not complete in general ONLY complete if repeated states are avoided and if the state space is finite
DFS: Optimality
DFS is NOT optimal
DFS: Time/Space Complexity
DFS has EXPONENTIAL time complexity O(b^m) and LINEAR space complexity O(bm)
Depth-Limited First Search (DLFS)
Equivalent to DFS but introduces a cutoff limit l
DLFS: Completeness
DLFS is complete if l >= d
DLFS: Optimality
DLFS is NOT optimal
DLFS: Time/Space Complexity
DLFS has EXPONENTIAL time complexity O(b^l) and LINEAR space complexity O(bl)
Iterative-Deepening Search (IDS) visits the nodes in the search tree in the same order as ________.
Depth-First Search
IDS uses ________ memory as BFS.
IDS uses MUCH LESS memory as BFS.
IDS: Completeness
IDS is complete if branching factor b is finite
IDS: Optimality
IDS is optimal if all step costs are identical
IDS: Time/Space Complexity
IDS has EXPONENTIAL time complexity O(b^d) and LINEAR space complexity O(bd)
Bidirectional Search
Technique to vastly improve time performance but is not always applicable
Trees are ________ and have a ________.
Trees are RESTRICTED GRAPHS and have a DIRECTION.
Can trees contain cycles?
No. Trees don’t contain cycles and can be seen as modified Directed Acyclic Graphs (DAGs)
Search algorithms are typically judged by ________.
COMPLETENESS; OPTIMALITY; TIME COMPLEXITY and SPACE COMPLEXITY