程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> [LeetCode] Game of Life

[LeetCode] Game of Life

編輯:關於C++

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):

1. Any live cell with fewer than two live neighbors dies, as if caused by under-population.
2. Any live cell with two or three live neighbors lives on to the next generation.
3. Any live cell with more than three live neighbors dies, as if by over-population..
4. 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:

1. 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.
2. 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?

解題思路

題目要求就地解決問題,所以不能計算出結果之後馬上更新該位置的值。因此我們考慮用十位個位分別表示下一代的值和當前代的值,計算live成員個數時,我們累加board[i][j] % 10的值,等用十位把所有位置都標記完後統一更新所有位置的值(board[i][j] /= 10)。

實現代碼

C++:

// Runtime: 4 ms
class Solution {
public:
    void gameOfLife(vector>& board) {
        for (int i = 0; i < board.size(); i++)
        {
            for (int j = 0; j < board[0].size(); j++)
            {
                int num = numOfLive(board, i, j);
                if (board[i][j] == 1 && (num == 2 || num == 3) ||
                    board[i][j] == 0 && num == 3)
                {
                    board[i][j] += 10;
                }
            }
        }

        for (int i = 0; i < board.size(); i++)
        {
            for (int j = 0; j < board[0].size(); j++)
            {
                board[i][j] /= 10;
            }
        }
    }
private:
    int numOfLive(vector> board, int m, int n)
    {
        int res = 0;
        for (int i = m - 1; i <= m + 1; i++)
        {
            for (int j = n - 1; j <= n + 1; j++)
            {
                if (i < 0 || j < 0 || i > board.size() - 1 ||
                    j > board[0].size() - 1 || (i == m && j == n))
                {
                    continue;
                }
                res += board[i][j] % 10;
            }
        }

        return res;
    }
};

Java:

// Runtime: 1 ms
public class Solution {
    public void gameOfLife(int[][] board) {
        for (int i = 0; i < board.length; i++) {
            for (int j = 0; j < board[0].length; j++) {
                int num = numOfLive(board, i, j);
                if (board[i][j] == 1 && (num == 2 || num == 3) ||
                        board[i][j] == 0 && num == 3) {
                    board[i][j] += 10;
                }
            }
        }

        for (int i = 0; i < board.length; i++) {
            for (int j = 0; j < board[0].length; j++) {
                board[i][j] /= 10;
            }
        }
    }

    private int numOfLive(int[][] board, int m, int n) {
        int res = 0;
        for (int i = m - 1; i <= m + 1; i++) {
            for (int j = n - 1; j <= n + 1; j++) {
                if (i < 0 || j < 0 || i > board.length - 1 ||
                        j > board[0].length - 1 || (i == m && j == n)) {
                    continue;
                }
                res += board[i][j] % 10;
            }
        }

        return res; 
    }
}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved