前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >C++经典算法题-生命游戏

C++经典算法题-生命游戏

作者头像
cwl_java
发布2022-11-30 08:35:30
3550
发布2022-11-30 08:35:30
举报
文章被收录于专栏:cwl_Java

10.Algorithm Gossip: 生命游戏

说明

生命游戏(game of life)为1970年由英国数学家J. H. Conway所提出,某一细胞的邻居包括上、下、左、右、左上、左下、右上与右下相邻之细胞,游戏规则如下: 孤单死亡:如果细胞的邻居小于一个,则该细胞在下一次状态将死亡。 拥挤死亡:如果细胞的邻居在四个以上,则该细胞在下一次状态将死亡。稳定:如果细胞的邻居为二个或三个,则下一次状态为稳定存活。 复活:如果某位置原无细胞存活,而该位置的邻居为三个,则该位置将复活一细胞。

解法

生命游戏的规则可简化为以下,并使用CASE比对即可使用程式实作:

邻居个数为0、1、4、5、6、7、8时,则该细胞下次状态为死亡。邻居个数为2时,则该细胞下次状态为复活。 邻居个数为3时,则该细胞下次状态为稳定。

代码语言:javascript
复制
#include<stdio.h> 
#include<stdlib.h> 
#include<ctype.h>

#define MAXROW 10
#define MAXCOL 25
#define DEAD 0
#define ALIVE 1
    int map[
    MAXROW][MAXCOL],newmap[MAXROW][MAXCOL];

    void init();

    int neighbors(int, int);

    void outputMap();

    void copyMap();

    int main() {
        int row, col;
        char ans;
        init();
        while (1) {
            outputMap();
            for (row = 0; row < MAXROW; row++) {
                for (col = 0; col < MAXCOL; col++) {
                    switch (neighbors(row, col)) {
                        case 0:
                        case 1:
                        case 4:
                        case 5:
                        case 6:
                        case 7:
                        case 8:
                            newmap[row][col] = DEAD;
                            break;
                        case 2:
                            newmap[row][col] = map[row][col];
                            break;
                        case 3:
                            newmap[row][col] = ALIVE;
                            break;
                    }
                }
            }

            copyMap();
            printf("\nContinue next Generation ? ");
            getchar();
            ans = toupper(getchar());
            if (ans != 'Y') break;
        }

        return 0;
    }

    void init() {
        int row, col;

        for (row = 0; row < MAXROW; row++)
            for (col = 0; col < MAXCOL; col++)
                map[row][col] = DEAD;

        puts("Game of life Program");
        puts("Enter x, y where x, y is living cell");
        printf("0 <= x <= %d, 0 <= y <= %d\n",
                MAXROW - 1, MAXCOL - 1);
        puts("Terminate with x, y = -1, -1");

        while (1) {
            scanf("%d %d", & row, &col);
            if (0 <= row && row < MAXROW && 0 <= col && col < MAXCOL) map[row][col] = ALIVE;
            else if (row == -1 || col == -1) break;
            else
                printf("(x, y) exceeds map ranage!");
        }
    }

    int neighbors(int row, int col) {
        int count = 0, c, r;
        for (r = row - 1; r <= row + 1; r++)
            for (c = col - 1; c <= col + 1; c++) {
                if (r < 0 || r >= MAXROW || c < 0 || c >= MAXCOL) continue;
                if (map[r][c] == ALIVE) count++;
            }

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

    }

    void outputMap() {
        int row, col;
        printf("\n\n%20cGame of life cell status\n");
        for (row = 0; row < MAXROW; row++) {
            printf("\n%20c", ' ');
            for (col = 0; col < MAXCOL; col++)
                if (map[row][col] == ALIVE) putchar('#');
                else putchar('-');
        }
    }

    void copyMap() {
        int row, col;
        for (row = 0; row < MAXROW; row++)
            for (col = 0; col < MAXCOL; col++)
                map[row][col] = newmap[row][col];
    }
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020-01-17,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 10.Algorithm Gossip: 生命游戏
    • 说明
      • 解法
      领券
      问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档