Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 410 Bytes

README.md

File metadata and controls

12 lines (11 loc) · 410 Bytes

Classical-Search-Algorithms

implementation of graph and tree search algorithms to find the path to the goal

in this project you can find below algorithms for solving the Romania Map problem(getting from Arad to Bucharest)-

source book: Artificial intelligence a modern approach - russell

  • BFS
  • Unlimited DFS
  • Depth Limited DFS
  • Iterative DFS
  • Uniform Cost search
  • Greedy Best First search
  • Astar