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?

【题目分析】

题目中一个细胞的生死是由他的邻居细胞中活细胞的数目确定的,他的邻居细胞位于上,下,左,右,左上,右上,左下,右下。规则如下:

1. 一个活细胞的邻居中如果活着的细胞少于两个,那么该细胞将会死亡;

2. 一个活细胞的邻居中如果活着的细胞等于两个或三个,那么该细胞将会存活;

3. 一个活细胞的邻居中如果活着的细胞多于三个,那么该细胞将会死亡;

4. 一个死细胞的邻居中如果活着的细胞等于三个,那么该细胞将会复活;

用一个0,1二维数组表示细胞的相对位置,0表示该位置的细胞死亡,1表示该位置细胞活着。更新细胞的状态,就地完成,不适用额外的存储空间。


【思路】

1. 该问题的难点在于就地完成,不使用额外的存储空间。在本题目中一个细胞状态变化后不能马上修改数组的内容,否则的话他的邻居细胞在统计他活着的邻居细胞时候数目将会是不正确的。我们必须把所有细胞的状态变化情况求出来,才能统一对细胞的状态进行改变。如何实现呢?

细胞的状态变化有两种情况1->0和0->1,我们设置两个标记,如果是1->0,我们把该位置赋值为-1,如果是0->1,我们把该细胞位置赋值为2。这样的话我们既保存了细胞的原始状态信息,也保存了细胞的变化情况。遍历每一个细胞,我们得到了所有细胞的变化情况,然后再次遍历数组,把所有-1变为0,所有2变为1即可。

2. 一个巧妙的思路如下:


【java代码1】

 public class Solution {
public void gameOfLife(int[][] board) {
if(board == null || board.length == 0 || board[0].length == 0) return;
int row = board.length;
int col = board[0].length; for(int i = 0; i < row; i++){ //第一次遍历,求出每一个细胞的状态变化情况
for(int j = 0; j < col; j++){
int num = neightbors(board, i, j);
if(board[i][j] == 1 && (num < 2 || num > 3))
board[i][j] = -1;
else if(board[i][j] == 0 && num == 3)
board[i][j] = 2;
else ;
}
} for(int i = 0; i < row; i++){ //第二次遍历修改细胞的状态
for(int j = 0; j < col; j++){
if(board[i][j] == -1)
board[i][j] = 0;
else if(board[i][j] == 2)
board[i][j] = 1;
else ;
}
}
} public int neightbors(int[][] board, int i, int j){ //求某个细胞的活着的邻居数目
int left = Math.max(0, j-1);
int right = Math.min(j+1, board[0].length-1);
int top = Math.max(i-1, 0);
int button = Math.min(i+1, board.length-1); int sum = 0;
for(int k = top; k <= button; k++){
for(int t = left; t <= right; t++){
if(board[k][t] == 1 || board[k][t] == -1) sum ++;
}
}
return board[i][j] == 0? sum : sum - 1;
}
}

【java代码2】

 public void gameOfLife(int[][] board) {
if(board == null || board.length == 0) return;
int m = board.length, n = board[0].length; for(int i = 0; i < m; i++) {
for(int j = 0; j < n; j++) {
int lives = liveNeighbors(board, m, n, i, j); // In the beginning, every 2nd bit is 0;
// So we only need to care about when the 2nd bit will become 1.
if(board[i][j] == 1 && lives >= 2 && lives <= 3) {
board[i][j] = 3; // Make the 2nd bit 1: 01 ---> 11
}
if(board[i][j] == 0 && lives == 3) {
board[i][j] = 2; // Make the 2nd bit 1: 00 ---> 10
}
}
} for(int i = 0; i < m; i++) {
for(int j = 0; j < n; j++) {
board[i][j] >>= 1; // Get the 2nd state.
}
}
} public int liveNeighbors(int[][] board, int m, int n, int i, int j) {
int lives = 0;
for(int x = Math.max(i - 1, 0); x <= Math.min(i + 1, m - 1); x++) {
for(int y = Math.max(j - 1, 0); y <= Math.min(j + 1, n - 1); y++) {
lives += board[x][y] & 1;
}
}
lives -= board[i][j] & 1;
return lives;
}

LeetCode OJ 289. Game of Life的更多相关文章

  1. LeetCode OJ 题解

    博客搬至blog.csgrandeur.com,cnblogs不再更新. 新的题解会更新在新博客:http://blog.csgrandeur.com/2014/01/15/LeetCode-OJ-S ...

  2. 【LeetCode OJ】Interleaving String

    Problem Link: http://oj.leetcode.com/problems/interleaving-string/ Given s1, s2, s3, find whether s3 ...

  3. 【LeetCode OJ】Reverse Words in a String

    Problem link: http://oj.leetcode.com/problems/reverse-words-in-a-string/ Given an input string, reve ...

  4. LeetCode OJ学习

    一直没有系统地学习过算法,不过算法确实是需要系统学习的.大二上学期,在导师的建议下开始学习数据结构,零零散散的一学期,有了链表.栈.队列.树.图等的概念.又看了下那几个经典的算法——贪心算法.分治算法 ...

  5. LeetCode OJ 297. Serialize and Deserialize Binary Tree

    Serialization is the process of converting a data structure or object into a sequence of bits so tha ...

  6. 备份LeetCode OJ自己编写的代码

    常泡LC的朋友知道LC是不提供代码打包下载的,不像一般的OJ,可是我不备份代码就感觉不舒服- 其实我想说的是- 我自己写了抓取个人提交代码的小工具,放在GitCafe上了- 不知道大家有没有兴趣 ht ...

  7. LeetCode OJ 之 Maximal Square (最大的正方形)

    题目: Given a 2D binary matrix filled with 0's and 1's, find the largest square containing all 1's and ...

  8. LeetCode OJ:Integer to Roman(转换整数到罗马字符)

    Given an integer, convert it to a roman numeral. Input is guaranteed to be within the range from 1 t ...

  9. LeetCode OJ:Serialize and Deserialize Binary Tree(对树序列化以及解序列化)

    Serialization is the process of converting a data structure or object into a sequence of bits so tha ...

随机推荐

  1. android 界面布局

    一.LinearLayout LinearLayout 又称作线性布局,是一种非常常用的布局,它所包含的控件在线性方向上依次排列. android:orientation="horizont ...

  2. HDU 5873 Football Games

    随便判了几个条件就过了,也不知道对不对的. 正解应该是: $[1].$${s_1} + {s_2} + {s_3} + ...... + {s_n} = n(n - 1)$ $[2].$${s_1} ...

  3. KMP算法 学习例题 POJ 3461Oulipo

    Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 37971   Accepted: 15286 Description The ...

  4. C# 语言规范_版本5.0 (第11章 结构)

    1. 结构 结构与类的相似之处在于,它们都表示可以包含数据成员和函数成员的数据结构.但是,与类不同,结构是一种值类型,并且不需要堆分配.结构类型的变量直接包含了该结构的数据,而类类型的变量所包含的只是 ...

  5. ECOS-Mongodb安装

    安装Mongodb服务 安装Mongodb服务 author :James,jimingsong@vip.qq.com since :2015-03-03 下载Mongodb安装包(64位哦) 安装M ...

  6. android设备中USB转串口demo 下载

    http://files.cnblogs.com/guobaPlayer/testUSB2Serial.apk USB转串口demo程序, 无需驱动,只要手机USB是OTG类型,插上我们的模块即可使用 ...

  7. surface pro系统按键+重装系统

    一. 如果无法进入系统: surface pro1代,可以插入U盘启动盘,然后按音量键上键,然后按电源键,然后释放电源键,然后等屏幕上"Surface"出来后,释放音量键. 2代以 ...

  8. 简单封装常用js方法

    1.uploadfiy插件封装 /* 参数:uploadID:上传控件ID url:请求后台url路径   callback:回调函数 */ uploadfiy({ uploadID: $('#btn ...

  9. OVERLAPPED相关的socket函数介绍

    OVERLAPPED相关的socket函数介绍 上一篇文章介绍了<Windows核心编程>OVERLAPPED结构与内核对象IOCompletionPort相关概念,见http://www ...

  10. 微信小程序支付步骤

    http://blog.csdn.net/wangsf789/article/details/53419781 最近开发微信小程序进入到支付阶段,一直以来从事App开发,所以支付流程还是熟记于心的.但 ...