Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

C++ version #5

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

C++ version #5

wants to merge 2 commits into from

Conversation

Cybertron3
Copy link

C++ implementation of Minimax AI Algorithm in Tic-Tac-Toe Game . This C++ version is little different from your python version. For e.g. if state is {1,-1,-1} , {0,1,0} , {0,0,0} and computer to move then your python version chooses position 4 and it will lead to victory but if it chooses position 9 then computer wins immediately . So to do this , we can add some extra lines that if computer can win at the current move then minimax fuction should return [x, y , inf] (see line 196 - 203).

It seems to me that it is more human to play the move which wins at the current move (if we can) than to play a move to force victory in next move.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant