GithubHelp home page GithubHelp logo

sudokusolver's Introduction

A Very Fast Sudoku Solver made in C++

How to Run ?

  • Compiling

    • Standard: g++ solver.cpp -o solver.exe

    • Faster: g++ -O3 solver.cpp -o solver.exe

    • Fastest(not recommended): g++ -Ofast solver.cpp -o solver.exe

  • Running

    • Put your sudoku puzzle in puzzle.txt, use numbers to represent given data and 0(Zero) to represent missing data with spaces in between every number.
    • Also put the size of the sudoku on the first line(look at examples in /puzzles)
    • Execute ./solver.exe in the terminal while in the root directory of the project.

How did I achieve this speed ?

  • To achieve this performance Donalds Knuths Algorithm X was used.
  • The data structure used to implement Algo X is Dancing Links also proposed by Donald Knuth.
  • I made a significant improvement in performance building the Toroidal Doubly Linked List to represent the puzzle as an exact cover problem. Time Complexity: O(n^3)
  • And then the standard backtracking algorithm as described by Algorithm X.

Tested on a Core i3 7th Gen @ 2.4 Ghz

  • 9 X 9 sudoku: 2.029 ms
  • 16 X 16: 4.986 ms
  • 25 X 25: 15.957 ms

Will be adding a GUI soon

sudokusolver's People

Contributors

vaibhav-35 avatar

Watchers

 avatar

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.