Skip to content

This is my first AI project in Introduction of AI from Harvard University.

Notifications You must be signed in to change notification settings

kaique-ryan-santos-chagas/search-algorithm-ai

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Unformed Search Algorithms


AI Search


  • Node

  • Data structure that turn possbible indicates data in alternatives positions in memory.

  • Depth First Algorithm

  • Use the Stack data structure (first in - last out).

  • Search depth into the path.

  • Find the goal state coordinate.

  • Breadth First Algorithm

  • Use the Queue data structure (first in - first out).

  • Search alternate states in the path.

  • Find the goal state coordinate.

About

This is my first AI project in Introduction of AI from Harvard University.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages