gpt4 book ai didi

元胞自动机不工作

转载 作者:太空宇宙 更新时间:2023-11-04 08:29:40 26 4
gpt4 key购买 nike

我正在尝试基于 this 创建元胞自动机.我设法以一种仅遵循规则 90 的简单方式做到了这一点,但是当我将其更改为接受任何规则时,我做错了什么。

结果应该是这样的。 http://natureofcode.com/book/imgs/chapter07/ch07_12.png

这是我的代码:

#include <stdio.h>
#include <stdlib.h>

int main()
{
FILE *myFile = fopen ( "input.txt" , "r" );
int i, j, cell, iterations=100, current[80], previous[80], ruleCase, rule=90;
for(i=0;i<80;i++){
fscanf(myFile, "%1d", &previous[i]);
if(previous[i]==0)printf("%c",176);
else printf("%c",178);
}
for(i=0;i<=iterations;i++){
for(cell=0;cell<80;cell++)
{
if((cell>0) && (cell<79))
{
ruleCase=1*previous[cell-1]+2*previous[cell]+3*previous[cell+1];
}
else if(cell==0)
{
ruleCase=1*previous[79]+2*previous[cell]+3*previous[cell+1];
}
else if(cell==79)
{
ruleCase=1*previous[cell-1]+2*previous[cell]+3*previous[0];
}
if(rule & (128 >> ruleCase))
{
current[cell]=1;
printf("%c",178);
}
else
{
current[cell]=0;
printf("%c",176);
}
}
for(j=0;j<80;j++){
previous[j]=current[j];
}
}
return 0;
}

使用以下输入.txt000000000000000000000000000000000000000100000000000000000000000000000000000000000

谢谢!

最佳答案

您似乎在错误地计算 ruleCase。例如,在一般情况下,您会...

ruleCase=1*previous[cell-1]+2*previous[cell]+3*previous[cell+1]

...但您正在尝试将单元格值解释为二进制 数字。因此,系数应该是 2 的幂:

ruleCase=1*previous[cell-1]+2*previous[cell]+4*previous[cell+1]

对于特殊情况也是如此。

关于元胞自动机不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28988203/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com