Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/myatmyintzuthin/tictactoe

Implementation of TicTacToe game in C++ with Automation
https://github.com/myatmyintzuthin/tictactoe

alpha-beta-pruning minimax-algorithm

Last synced: 16 days ago
JSON representation

Implementation of TicTacToe game in C++ with Automation

Awesome Lists containing this project

README

        

# TicTacToe :game_die:
TicTacToe Game in C++ implementation.

## HUMAN Vs AI - Minimax Algorithm
One player TicTacToe game. To play the game run:
```
./minimax/tic_tac_toe_minimax
```

## HUMAN Vs AI - Alpha Beta Pruning
One player TicTacToe game. To play the game run:
```
./alpha_beta_pruning/alpha_beta_pruning
```

### Board style:
```bash
****** Tic Tac Toe ******
****** Game Start! ******
--------------------------------------
Player X = Computer
Player O = Human
--------------------------------------
Positions = [0,1,2,3,4,5,6,7,8]

Current Board:

--- --- ---

--- --- ---

--- --- ---

Do you want to go first?[y/n]