Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nkottary/tic-tac-toe-ai
Minmax AI for Tic tac toe written in C.
https://github.com/nkottary/tic-tac-toe-ai
Last synced: 27 days ago
JSON representation
Minmax AI for Tic tac toe written in C.
- Host: GitHub
- URL: https://github.com/nkottary/tic-tac-toe-ai
- Owner: nkottary
- Created: 2014-09-26T15:40:36.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-26T15:41:07.000Z (about 10 years ago)
- Last Synced: 2024-10-03T05:09:45.624Z (about 1 month ago)
- Language: C
- Size: 97.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# TicTacToe
TicTacToe AI written in C. Use numerical keys to position x's and o's.## Details
1. Both files use min-max strategy.
2. tictactoe_forwardChecking.c checks for '3 in a row's before backtracking and makes the appropriate move.