Tagged Questions
8
votes
4answers
1k views
TicTacToe AI Making Incorrect Decisions
A little background: as a way to learn multinode trees in C++, I decided to generate all possible TicTacToe boards and store them in a tree such that the branch beginning at a node are all boards that ...
4
votes
6answers
1k views
Detect winning game in nought and crosses
I need to know the best way to detect a winning move in a game of noughts and crosses. Source code doesn't matter, I just need a example or something I can start with.
The only thing I can come up ...
3
votes
3answers
185 views
Generate a list of all unique Tic Tac Toe boards
I would like to generate a text file containing all 19,683 Tic-Tac-Toe board layouts in the structure of 0 = Blank, 1 = X, and 2 = O. Unfortunately math is not my strong suit and I cannot seem to ...
3
votes
7answers
2k views
What algorithm would you use to solve a very large tic-tac-toe game?
A small (3x3, 4x4) tic-tac-toe can be easily solved by considering all the cases. But for example, you have a 30x30 tic-tac-toe. What algorithm would you use to decide the next best move in that case? ...
1
vote
4answers
236 views
How to determine game end, in tic-tac-toe?
I'm developing tic-tac-toe game, and I need algorithm to check when game ends(and who win).
In 3x3 game I would check each possible win-situation(there is 8 capabilities). But in 7x7(needed 4 signs in ...
1
vote
6answers
769 views
Pruning Tic Tac Toe Moves
I've written a tic tac toe code that fine to a point. I have Alpha-Beta Pruning working also. I've ran across a problem that I need ideas, NOT CODE. How can I choose a move that will win in 4 moves ...
0
votes
1answer
391 views
Tic Tac Toe C++ algorithm debugging help
Please help me understand why this isn't working. I don't know if there is a bug in my code, or whether my algorithm is fundamentally logically flawed.
My algorithm is based on minimax, but I've ...
0
votes
3answers
695 views
look for evaluation function in tictactoe 3d game
I'm trying to apply minimax algorithm for the game tictactoe 3D in c++.
I'm struggling to find a good evaluation function for it.
Does anybody know where has good resource to find the evaluation ...