Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

40
votes
35answers
3k views

Code Golf: Tic Tac Toe

Post your shortest code, by character count, to check if a player has won, and if so, which. Assume you have an integer array in a variable b (board), which holds the Tic Tac Toe board, and the moves ...
8
votes
5answers
436 views

TicTacToe strategic reduction

I decided to write a small program that solves TicTacToe in order to try out the effect of some pruning techniques on a trivial game. The full game tree using minimax to solve it only ends up with ...
8
votes
4answers
1k views

Tic-Tac-Toe AI: How to Make the Tree?

I'm having a huge block trying to understand "trees" while making a Tic-Tac-Toe bot. I understand the concept, but I can't figure out to implement them. Can someone show me an example of how a tree ...
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?
5
votes
2answers
2k views

tic tac toe using alpha beta prunning in java

I am trying to play tic tac toe using iterative Alpha-Beta prunning, I have one second limit for a move but for some reason it doesnt work well. I modified the regular alpha-beta code so instead of ...
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
5answers
117 views

Choose X or O for move tic tac toe

I am making a Tic Tac Toe game and i created a function that inserts X or O into my array. I have run into one problem with my design. I call the function to make a move for X, but when it is the next ...
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
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
3answers
2k views

Minimax explained for an idiot

I've wasted my entire day trying to use the minimax algorithm to make an unbeatable tictactoe AI. I missed something along the way (brain fried). I'm not looking for code here, just a better ...
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
1answer
42 views

Reloading another user's page

Assume you have made an internet game of tic-tac-toe or sth that is played between players. So, when a player inputs 'x' or 'o' or whatever is the input, the opponent must receive it on his pc. I ...
2
votes
1answer
95 views

IndexErrors in Tic-Tac-Toe program I'm having issues with

I've pasted the code here: X = "X" O = "O" board = [] EMPTY = "" def instructions_prompt (): print "\t\t\tNoughts and Crosses" print \ """Foolish human. Now that you've entered this ...
2
votes
6answers
326 views

How to pause / resume Java Threads

I am making a Tic Tac Toe Program in java because i am learning java and i thought a simple project would be a great place to start. This is my code so far: public class Start { public static ...
2
votes
6answers
711 views

Tic-Tac-Toe: How to populate decision tree?

I'm making a Tic-Tac-Toe program. I plan to use minimax with it. I made a tree with space for all possible game sequences and I'm looking for a way to populate it. I currently have this type: typedef ...
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 ...
2
votes
7answers
221 views

Python: does it make sense to refactor this check into its own method?

I'm still learning python. I just wrote this method to determine if a player has won a game of tic-tac-toe yet, given a board state like: '[['o','x','x'],['x','o','-'],['x','o','o']]' def ...
1
vote
0answers
137 views

Python minimax for tictactoe

After completely failing the minimax implementation for tic tac toe, I fail to see what's wrong. Right now, my AI just goes around in a circle... import collections class ...
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
2answers
192 views

Java ArrayIndexOutOfBoundsException in Tic-Tac-Toe

I'm making a simple Tic-Tac-Toe program but I'm getting java.lang.ArrayIndexOutOfBoundsException if my input goes 1 1 then 1 3. basically if my next input is where my computer will go next. This is ...
1
vote
3answers
75 views

How do I get rid of this TypeError, and why is it occurring given that I am simply reassigning a value in a list?

Code: http://pastie.org/1961455 Trackback: Traceback (most recent call last): File "C:\Users\COMPAQ\Desktop\NoughtsCrosses.py", line 149, in <module> main () File ...
1
vote
3answers
217 views

Submit value of a TextBox without reloading page

I'm working on an ASP.NET based TicTacToe game. The problem I have with it is that: The game is played between two users. When the first one types 'x' in the TextBox I want the 'x' to be shown on the ...
1
vote
3answers
314 views

Java - Using multiple stacks to allow an 'undo' method

I'm working on a tic tac toe game and am wanting to implement an undo method. What I feel is the best way to do this is just setup another (multiple?) stacks, and make a copy of the 'moves' that have ...
1
vote
2answers
103 views

tic tac toe using builder 6 aplications form

i'm doing a tic tac toe game in builder 6 with dinamic buttons and i encounted a issue whit the function which alternates the X and 0 when i pressed a button. void __fastcall show(TObject *Sender) { ...
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 ...
1
vote
1answer
73 views

Compact way of representing all valid “rows” in a tic-tac-toe grid

I've been writing tic-tac-toe in a variety of languages as an exercise, and one pattern that has emerged is that every representation I've come up with for the defining valid winning rows has been ...
1
vote
6answers
770 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
0answers
89 views

Tic-tac-toe game graph design?

this is a general question from my homework, I am just asking for some ideas or pseudo code. Suppose I am constructing a tic-tac-toe game using C++. What I already have is a Node class which contains ...
0
votes
0answers
105 views

How to program “Count Down Tic Tac Toe” AI

I want to replicate the count down tic tac toe game. I have programmed a tic tac toe game with perfect AI, which is very simple. But I can't seem to find the best/undefeatable tactic. I tried to ...
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
35 views

Class draw() method works when called directly, but crashes when called by another object [closed]

I'm making a version of nine-board Tic Tac Toe. (Each move determines the board in which the opposing player must move) My standard Board draws fine with: gameplay->board->draw(w, h, d); But ...
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 ...
0
votes
1answer
392 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
0answers
162 views

Error while creating recursive n-ary tree

In this question, I was making a NxN tic-tac-toe with Minimax algorithm. The problem: I tried to generate an n-ary tree which each of its node is a "state"( a class which pretty mcuh contains the ...
0
votes
1answer
103 views

Process for making ultimate naughts and crosses / tic tac toe

I'm learning android, and I'd like to make a game of "Ultimate" naughts and crosses. This is where you have a large board, and you have to get 5 in a row. The game ends when there is not enough space ...
0
votes
2answers
245 views

TicTacToe Array. Winner method and is square free

Hi I dont know what im doing wrong here. Can anyone tell me what's wrong with my checkRow code in checkWinner and isSquareFree method. please help. here's my code; public class TicTacToe { /** * ...
0
votes
1answer
258 views

Trying to Learn C++, Tic Tac Toe program not working

I'm trying to learn C++ and I'm writing a Tic Tac Toe program. I'm really confused and it's late, but I just want to figure out what is going wrong so I can feel like I accomplished something. Any ...
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 ...
0
votes
2answers
457 views

Replay tic tac toe game

So I am trying to program a way to replay a tic tac toe game after someone wins, loses, or ties. So basically my attempt to get replay to work, doesnt work. If player 1 won and I type 1 to replay, it ...
-1
votes
3answers
314 views

Tic Tac Toe Program help

I am not sure how to proceed from what I have already: I am having trouble getting my array to work and I am also having trouble with my chart reseting everytime i re-run the program. It does not save ...
-1
votes
3answers
392 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 ...
-2
votes
4answers
415 views

how can i made tic toc toe puzzle game in iphone sdk?

I want to make tic toc puzzle game for iphone . Please help me about this. Thanks!