Uninformed
Breadth First
- Uniform cost with cost function proportional to depth
- All of each layer
- Max nodes before solution
- Time, space complexity =
- Exponential
- Lots of time but complete and optimal
- Goal at depth,
- Average at terminal nodes
Depth First
- Between and
- If at left hand side or right hand side
- Much less memory space than BFS
- Non-optimal, non-complete
- Non-optimal, non-complete
Depth Limited
- Predetermined max depth
- Only complete if max depth is sufficiently large
- Hard to determine
Bi-Directional
- Out from start and goal until they meet
- If done with heuristics
- May not crossover
Iterative Deepening
- Combine BFS and DFS