C++经典算法题

阅读: 评论:0

C++经典算法题

C++经典算法题

10.Algorithm Gossip: 生命游戏

说明

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

解法

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

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

#include<stdio.h> 
#include<stdlib.h> 
#include<ctype.h>#define MAXROW 10
#define MAXCOL 25
#define DEAD 0
#define ALIVE 1int 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 <= %dn",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;elseprintf("(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("nn%20cGame of life cell statusn");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];}

本文发布于:2024-01-28 15:28:58,感谢您对本站的认可!

本文链接:https://www.4u4v.net/it/17064269408399.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

上一篇:Spring系列
下一篇:选择永恒
标签:算法   经典
留言与评论(共有 0 条评论)
   
验证码:

Copyright ©2019-2022 Comsenz Inc.Powered by ©

网站地图1 网站地图2 网站地图3 网站地图4 网站地图5 网站地图6 网站地图7 网站地图8 网站地图9 网站地图10 网站地图11 网站地图12 网站地图13 网站地图14 网站地图15 网站地图16 网站地图17 网站地图18 网站地图19 网站地图20 网站地图21 网站地图22/a> 网站地图23