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 rows, collumns, and other things like evaluation score ).
This is my recursion:
public void createTree( State presentState )
{
if( !gameIsEnd(presentState) && presentState.getTreeDepth() < maxDepth )
{
int size = presentState.getRows().size();
//I store the rows as ArrayList<ArrayList<Integer>>.
ArrayList<Integer> alint = presentState.getRowArray();
//this method is used to convert the ArrayList<ArrayList<Integer>> row into a normal ArrayList<Integer>
for (int i = 0; i < alint.size(); i++)
{
if( alint.get(i) == 0 )
{
int depth = presentState.getTreeDepth();
int newDepth = depth + 1;
int newVal;
if( depth%2 != 0 )
{
newVal = playerB;
}
else
{
newVal = playerA;
}
// playerA is the player which initiate this method, and the playerB is the enemy. I use integer 1 for player 1, and integer 2 for player 2.
int x = i % size;
int y = ( i - x )/size;
presentState.printRow(); //print to debug
System.out.println("depth = " + depth);
System.out.println("");
System.out.println("");
State newState = new State(presentState, newVal, newDepth);
newState.setCoordinate(x+1, y+1, newVal);
newState.setPlayerNum(newVal);
if(presentState.getTreeDepth() < maxDepth-1)
{
presentState.addChild(newState);
}
createTree(newState);
}
}
}
else
{
presentState.calculateEvaluationPoint();
}
}
When I test it, it prints like this:
1 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
depth = 0
1 2 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
depth = 1
1 2 1 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
depth = 2
1 2 1 2 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
depth = 3
1 2 1 2 1
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
depth = 4
1 2 1 2 1
2 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
depth = 4
1 2 1 2 1
2 2 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
depth = 4
1 2 1 2 1
2 2 2 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
depth = 4
1 2 1 2 1
2 2 2 2 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
depth = 4
I don't know why, but it seemed like my recursion is using the same states over and over again ( see the 5 last states. They should be siblings, because they have same depths). Can anyone points out my mistake?
Note: I am a beginner, and I think I'm really bad at recursion. :D
This issue has been addressed here before recursively creating a tree, but I still don't get it. Can anybody kindly enough explain to me about this problem?
Thank you very much!
Edit:
The last 4 states was wrong because It was supposed be the child of state 3.
This is the constructor for the State ( Thank you for the fast response @Aasmund Eldhuset ):
.
public State( State prevState, int playerNum, int treeDepth )
{
this.setCols(prevState.getCols());
this.setRows(prevState.getRows());
this.setDiagonal_1(prevState.getDiagonal_1());
this.setDiagonal_2(prevState.getDiagonal_2());
this.playerNum = playerNum;
this.setTreeDepth(treeDepth);
} // Just a normal constructor. I use separated arrays to make me easier to check the tic-tac-toe winning condition.
State(the one you invoke inState newState = new State(presentState, newDepth);)? – Aasmund Eldhuset Jun 1 '11 at 19:15