Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 506 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 506 Bytes

Artificial Intelligence Search Algorithms

AI search algorithms with graph and program implementation

  • Classic
    • A - Star
    • Breadth Frst Search (BFS)
    • Bidirectional Breadth First Search
    • Unlimitied Depth First Search (DFS)
    • Depth Limited First Search
    • Iterative Deepening Depth First Search (IDS)
    • Uniform Cost Search (UCS)
  • Heuristic
    • Simulated Annealing
    • Hill Climbing
    • Stochastic Hill Climbing
    • Random Restart Hill Climbing
    • First Choice Hill Climbing
    • Genetic