Floodfill algorithm for GO
- by user1048606
The floodfill algorithm is used in the bucket tool in MS paint and photoshop, but it can also be used for GO and minesweeper.
http://en.wikipedia.org/wiki/Flood_fill
In go you can capture groups of stones, this website portrays it with two stones.
http://www.connectedglobe.com/mindy/cap6.html
This is my floodfill method in Java, it is not…