生命游戏(Life game)

[b]问题说明:[/b]

生命游戏,为1970年英国数学家J.H.Conway所提出,某一细胞的邻居包括上,下,左,右,左上,左下,右上与右下相邻的细胞,游戏规则如下:

1,孤单死亡:如果细胞的邻居小于一个,则该细胞在下一个状态死亡。

2,拥挤死亡:如果细胞的邻居在四个以上,则该细胞在下一个状态死亡。

3,稳定:如果细胞的邻居为两个或三个,则该细胞在下一个状态稳定。

4,复活:如果某位置原无细胞存活,而该位置的邻居为三个,则该位置将复活一个细胞。

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class LifeGame {
private boolean[][] map;
private boolean[][] newmap;

public LifeGame(int maxRow, int maxColumn) {
map = new boolean[maxRow][maxColumn];
newmap = new boolean[maxRow][maxColumn];
}

public void setCell(int x, int y) {
map[x][y] = true;
}

public void next() {
for(int row = 0; row < map.length; row++) {
for(int col = 0; col < map[0].length; col++) {
switch (neighbors(row, col)) {
case 0:
case 1:
case 4:
case 5:
case 6:
case 7:
case 8:
newmap[row][col] = false;
break;
case 2:
newmap[row][col] = map[row][col];
break;
case 3:
newmap[row][col] = true;
break;
}
}
}

copyMap();
}

public void outputMap() throws IOException {
System.out.println("\n\nGame of life cell status");
for(int row = 0; row < map.length; row++) {
System.out.print("\n ");
for(int col = 0; col < map[0].length; col++)
if(map[row][col] == true)
System.out.print('#');
else
System.out.print('-');
}
}

private void copyMap() {
for(int row = 0; row < map.length; row++)
for(int col = 0; col < map[0].length; col++)
map[row][col] = newmap[row][col];
}

private int neighbors(int row, int col) {
int count = 0;

for(int r = row-1; r <= row+1; r++)
for(int c = col-1; c <= col+1; c++) {
if(r < 0 || r >= map.length ||
c < 0 || c >= map[0].length)
continue;
if(map[r][c] == true)
count++;
}

if(map[row][col] == true)
count--;

return count;
}

public static void main(String[] args)
throws NumberFormatException, IOException {
BufferedReader bufReader =
new BufferedReader(
new InputStreamReader(System.in));

LifeGame game = new LifeGame(10, 25);

System.out.println("Game of life Program");
System.out.println(
"Enter x, y where x, y is living cell");
System.out.println("0 <= x < 10, 0 <= y < 25");
System.out.println("Terminate with x, y = -1, -1");

while(true) {
String[] strs = bufReader.readLine().split(" ");
int row = Integer.parseInt(strs[0]);
int col = Integer.parseInt(strs[1]);

if(0 <= row && row < 10 && 0 <= col && row < 25)
game.setCell(row, col);
else if(row == -1 || col == -1) {
break;
}
else {
System.out.print(
"(x, y) exceeds map ranage!");
}
}

while(true) {
game.outputMap();
game.next();

System.out.print(
"\nContinue next Generation ? ");

String ans = bufReader.readLine().toUpperCase();

if(!ans.equals("Y"))
break;
}
}
}
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
生命游戏是一款经典的模拟游戏,还被称为康威生命游戏或简称为Game of Life。它是由英国数学家约翰·康威于1970年创造的。该游戏以一个二维的生命世界为背景,模拟了细胞在不同时间和状态下的生死变化。 如果想在Windows上下载这款游戏,可以通过以下步骤进行操作: 首先,在网络上搜索“生命游戏Windows下载”,可以找到各种在线游戏下载网站或者开发者的官方网站。 进入下载网站后,找到“生命游戏”的游戏页面。一般来说,页面上会提供游戏的简介、版本、大小以及系统要求等信息,确保你的系统满足要求。 点击下载按钮,选择保存文件的位置,并等待下载完成。 完成下载后,找到保存的游戏文件,双击打开安装程序。 按照安装程序的指示,选择安装路径和其他选项,并完成安装。 安装完成后,在开始菜单或桌面上会出现游戏的快捷方式。点击图标打开游戏。 在游戏中,你可以探索不同的初始种子图案,观察细胞的生命生长和死亡。游戏通常会提供一些控制工具,让你可以暂停、快进或者重置生命世界。你还可以自定义初始状态,并观察其演变。 生命游戏虽然简单,但却展现了复杂而美丽的数学规律。无论是对于数学爱好者还是普通玩家,都是一款有趣且富有挑战性的游戏。希望你能在Windows上体验到这款经典的生命游戏

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值