Skip to content

Implementation and comparison of some uninformed search algorithms πŸ”ŽπŸ—ΊοΈπŸŒ

Notifications You must be signed in to change notification settings

FarrelAD/Uninformed-Search-Algorithms-Comparison

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

91 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

This repository contains implementation and comparison some uninformed search algorithm. I will choose some of these algorithms:

  1. Breadth-First Search (BFS)
  2. Depth-First Search (DFS)
  3. Uniform Cost Search (UCS)
  4. Depth-Limited Search (DLS)

πŸƒπŸ»β€β™€οΈ How to run this program ?

  1. Clone this repository
    git clone https://github.com/FarrelAD/Uninformed-Search-Algorithms-Comparison.git
  2. Install require dependencies
    • Activate venv in your project

      Windows

      venv\Scripts\activate

      macOS/Linux

      source venv/bin/activate
    • Install require dependency with this command

      pip install -r requirements.txt
  3. Run program
    python src/main.py