博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] Game of Life
阅读量:6495 次
发布时间:2019-06-24

本文共 3653 字,大约阅读时间需要 12 分钟。

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 msclass 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 mspublic 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;    }}

转载地址:http://cvyyo.baihongyu.com/

你可能感兴趣的文章
oracle11g数据库升级
查看>>
AWS - Couldformation 初探
查看>>
《理解 OpenStack + Ceph》---来自-[爱.知识]-推荐
查看>>
手把手教你搭建一个学习Python好看的 Jupyter 环境
查看>>
ES6基础之Array.fill函数
查看>>
ES6深拷贝与浅拷贝
查看>>
如何免费(轻成本)在网上做推广宣传
查看>>
Exchange 2013与OWA13集成
查看>>
硬铺路、软筑墙:三星移动在中国的新路径
查看>>
SCCM 2012 SP1系列(七)分发部署exe软件
查看>>
InfBox V7.0 企业绩效助手客户端使用简介
查看>>
Linux系统/boot目录破损无法启动怎么办
查看>>
[转] JavaScript仿淘宝智能浮动
查看>>
c++ hook 钩子的使用介绍
查看>>
伪终端
查看>>
N皇后问题的位运算求解——目前最快的方法
查看>>
IL rewriting
查看>>
Java 事件适配器 Adapter
查看>>
poj 3321 Apple Tree
查看>>
【转】 LDA必读的资料
查看>>