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 ...
6
votes
3answers
450 views
In game programming, how can I test whether a heuristic used is consistent or not?
I have thought of some heuristics for a big (higher dimensions) tic-tac-toe game. How do I check which of them are actually consistent?
What is meant by consistency anyways?
3
votes
1answer
487 views
Quantum tic-tac-toe with alpha-beta pruning - best representation of states?
For my AI class, I have to make a quantum tic-tac-toe game using alpha-beta pruning.
I'm thinking about the best way to represent a state of the board - my first intuition is to use a sort of ...
3
votes
4answers
748 views
Suggestion on Tic Tac Toe
All,
I am designing my implementation strategy for Tic Tac Toe game. Since this is my 1st game implementation, I am a bit confused and need some general pointers.
Now, the total number of winning ...
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? ...
2
votes
4answers
282 views
I'm learning C, and have made up a Tic Tac Toe table. Now, how can I reference the individual cells?
I'm learning C, so decided to try and make a Tic Tac Toe game, using ASCII art as the table.
I don't have much yet...
#include <stdio.h>
#define WIDTH 2;
#define HEIGHT 2;
int main (int ...
1
vote
7answers
298 views
What's the best way to approach this simple TicTacToe exercise?
Everything is working up to here, I just need to create the method that checks whether someone has won.
Any suggestions on how to tackle this problem effectively?
using System;
using ...
0
votes
4answers
130 views
Stuck on TicTacToe checking if the move is valid C++
Hi I am a beginner and I am making a console tic tac toe c++ before I try to get it done in unity3d but that's another story, I got stuck on the get_move1() function, as far as how can I check if the ...
0
votes
1answer
380 views
C++ Tic Tac Toe Game [closed]
Possible Duplicate:
C++ Tic Tac Toe Game
I tried my best and this is what I have so far, please help me out. This is my code that I need to complete.
Implement displayBoard to display Tic ...
-1
votes
3answers
393 views
C++ Tic Tac Toe Game
I am so confused. I am trying to create a tic tac toe game using windows c++ visual. So far I was doing good until I kept getting errors. I tried looking for help but none of the answers seemed ...
-2
votes
1answer
55 views
program that will display an o on the board after randomly chosen
Sorry about the code before. This is code for the computer. If the user selects the coordinate N1 then it randomly selects another coordinate that is can block that position. This is part of a tic tac ...