Git Product home page Git Product logo

tictactoe's Introduction

Tic Tac Toe

This is a simple command-line tic-tac-toe game using ncurses. You select X or O and click the square you would like to place a tile in. X always goes first.

Image

Dependencies

This program requires ncurses to be installed on your system.

On Debian/Ubuntu systems, ncurses can be installed with:

$ sudo apt install libncurses5-dev libncursesw5-dev

Usage

The program is compiled with make and can be run with ./TicTacToe

Implementation

The program brute forces the entire tic-tac-toe game tree. It then does alpha-beta pruning on that tree to find the best move. I implement a Tic class similar to how I see chess classes implemented. Tic can return the number of legal moves, play moves, determine if the position is a win, etc.

Possible Improvements:

The program can be made faster by saving the tree to a file, and reading from the file instead of calculating the tree each run of the program.

The game tree has 549946 nodes, which is kind of a lot as I don't take transpositions into account. However, even when generating 549946 nodes without multithreading, the gameplay is instantaneous.

License

This project uses the MIT license.

tictactoe's People

Contributors

zinkelburger 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.