If I have a 64 length java array i[], is there a quick way to find out if every position in that array is "full", other than looping through the entire array? I'm writing a Reversi AI and I need to know whether the entire array is full or not.
Is there a way to quickly find if all positions in an array are "full"?
896 Views Asked by Sam P At
4
Keep a flags variable of type
long
(which is 64 bits) and use it to track which array entries are 'full' by setting or clearing the relevant bit as appropriate. (You need to keep this in sync with your array entries.)If you use a
1
value for each bit to mean the relevant cell is full, the you can tell very quickly if the whole array is full by comparing the flag variable to-1L
.Example implementation
You can be even more cunning, and use a flags variable to track the colour of each cell too, so you can avoid using arrays altogether. One variable tracks whether the given cell is occupied or not, and the other tracks the colour (0 for white, 1 for black, say).