Leetcode-Game of Life(Java)

Question:

According to the Wikipedia’s article: “The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970.”

Given a board with m by n cells, each cell has an initial state live (1) or dead (0). Each cell interacts with its eight neighbors (horizontal, vertical, diagonal) using the following four rules (taken from the above Wikipedia article):

Any live cell with fewer than two live neighbors dies, as if caused by under-population.
Any live cell with two or three live neighbors lives on to the next generation.
Any live cell with more than three live neighbors dies, as if by over-population..
Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction.
Write a function to compute the next state (after one update) of the board given its current state.

Follow up:
Could you solve it in-place? Remember that the board needs to be updated at the same time: You cannot update some cells first and then use their updated values to update other cells.
In this question, we represent the board using a 2D array. In principle, the board is infinite, which would cause problems when the active area encroaches the border of the array. How would you address these problems?

Thinkings:

It’s difficult quesiont, isn’t it? We have to fully understand when cell become live or dead and try to replace them in place. One solution is to present their status using bits, the first bit represents their current status and second bit represents their next status. For example:

current status is live and next status will be dead is 01
current status is dead and next status will be live is 10

And then we can get the current status by:

board[i][j] & 1

Get the finnaly status by:

board[i][j] >>= 1

Solution:

public void gameOfLife(int[][] board) {
    int m = board.length;
    if (m == 0)
        return;
    int n = board[0].length;

    //int[][] temp = new int[m][n];


    for (int i = 0; i < m; i++){
        for (int j = 0; j < n; j++){
            int count = 0;
            for (int p = -1; p < 2; p++)
                for (int q = -1; q < 2; q++){
                    if (i+p>=0 && i+p<m && j+q>=0 && j+q<n && !(p==0 && q==0)){
                        if ((board[i+p][j+q] & 1) == 1)
                            count++;
                    }
                }

            if ((board[i][j] & 1) == 0 && count == 3){
                //temp[i][j] = 1;
                board[i][j] = 2;
            }
            else if ((board[i][j] & 1) == 1 && count <=3 && count >= 2){
                    board[i][j] = 3;

            }
        }
    }

    for (int i = 0; i < m; i++){
        for (int j = 0; j < n; j++){
            //board[i][j] = temp[i][j];
            board[i][j] >>= 1;
        }
    }
}