Date: February 20, 2024

Topic: Terminology

Recall

Notes

Terminology

Parameters


<aside> 📌 SUMMARY: Terminologies

</aside>


Date: February 20, 2024

Topic: Search Algorithms 1

Recall

Check through all possible candidates

Notes

Brute Force

Enumerate all possible candidates in an indiscriminate manner until a solution / the best solution that reaches the goal is found

Optimal (if finite set) but not Best-First Search


Expand nodes from the current depth before going onto the next depth.

Optimal only if the actions cost the same

Breadth First Search

Search for the solution by checking all nodes at the current depth before moving onto next depth

Example of BFS starting at C1

Example of BFS starting at C1

Optimal only if actions have same cost and Best-First Search


Expand from A to reach B and C


<aside> 📌 **SUMMARY:

</aside>


Date: February 20, 2024

Topic: Search Algorithms 2