GithubHelp home page GithubHelp logo

almayor / n-puzzle Goto Github PK

View Code? Open in Web Editor NEW
1.0 2.0 0.0 1.95 MB

Solving N Puzzle problem using A* algorithm

C++ 60.29% Python 35.35% Makefile 4.36%
n-puzzle 15-puzzle astar-algorithm school42

n-puzzle's Introduction

N Puzzle

An implementation of A* algorithm to solve the N Puzzle problem. N Puzzle is a generalization of the famous 15 Puzzle problem. Both Python and C++ implementations are provided.

Please note that the puzzle is solved when a "snail" state is achieved, which is different from the goal state in the original statement of the problem. Here are examples

You can choose one of the following admissible heuristic functions (in order of increasing efficiency)

  1. Hamming
  2. Euclidian
  3. Manhattan
  4. Manhattan with linear conflicts

In addition, the Python implementation can accept multiple search modes:

  1. A* (optimal)
  2. greedy (fast when N is large)
  3. uniform

Executing

To generate puzzles,

python3 npuzzle_gen.py --help

To run Python version,

python3 -m pip install -r requirements.txt
python3 solver.py --help
python3 solver.py < "your-puzzle-file"

To run C++ version,

make
./solver --help
./solver < "your-puzzle-file"

References

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.