Skip to content

Latest commit

 

History

History
16 lines (16 loc) · 613 Bytes

File metadata and controls

16 lines (16 loc) · 613 Bytes

AI searching techniques using Python and Tkinter for graphical user interface

This is a Python project that uses Tkinter to develop the front end of the application and Python to implement AI searches. This has a cool graphical interface and visualization to make the project look aesthetic. I've implemented all of these searches named below.

Uninformed Search

  • Breadth-First Search
  • Depth First Search
  • Depth Limited
  • Iterative Deepening
  • Uniform Cost Search
  • Bidirectional Search

Informed Search

  • Best First Search
  • A* Search

Adversarial Search

  • Simulated Annealing
  • Alpha Beta Pruning