How do i start with Gomoku?
- by firstTry
I read about Gomoku that it can be implemented using Minimax and Alpha-Beta Pruning algorithms. So, i read these algorithms and now understand how the game will be solved. But when i sat to down to code, I am facing problem how to approach it.
As in ,
How to design the prototype functions like getNextMove or Max(Move) ?
How will the next move searched?
Till when should i apply the minimax algorithm.
I know i can find the code online, but i want to do it myself.
Can anyone please point me in the right direction?