reverse - 如何生成康威生命游戏算法的先前状态?

标签 reverse

假设我们有康威生命游戏算法的第 i 个状态,我如何生成该算法的先前状态

我不知道这个问题

最佳答案

Conway's Game of Life, one of the most famous cellular automaton rules, is not reversible: for instance, it has many patterns that die out completely, so the configuration in which all cells are dead has many predecessors, and it also has Garden of Eden patterns with no predecessors. However, another rule called "Critters" by its inventors, Tommaso Toffoli and Norman Margolus, is reversible and has similar dynamic behavior to Life.

来自https://en.wikipedia.org/wiki/Reversible_cellular_automaton

关于reverse - 如何生成康威生命游戏算法的先前状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56380174/

相关文章:

c - C 中的反向函数产生单词然后产生垃圾

java - 关于反转字符串的问题

java - 进行选择时,ListView 列表会反转

c - 帮助理解使用递归反转链表的代码片段

python - Django:在模板中访问多对多(反向)

Javascript 迭代 - 颠倒顺序

c++ - 反向迭代器在优化时返回垃圾

c - 为什么这个反向字符串函数会出现段错误?

c - 在不使用指针的情况下反向打印 C 字符串?

c - 有没有办法在内存中逐个字节交换字节数组?