【实例简介】
元胞自动机 java实现,带可视化界面。需要jdk8环境打开
元胞自动机(Cellular Automaton),复数为Cellular Automata,简称CA,也有人译为细胞自动机、点格自动机、分子自动机或单元自动机)。是一时间和空间都离散的动力系统。散布在规则格网 (Lattice Grid)中的每一元胞(Cell)取有限的离散状态,遵循同样的作用规则,依据确定的局部规则作同步更新。大量元胞通过简单的相互作用而构成精态系统的演化。由冯诺依曼在20世纪50年代发明。
【实例截图】
【核心代码】
CA
└── CA
├── CA.iml
├── out
│ └── production
│ └── CA
│ └── sample
│ ├── Cell.class
│ ├── CellsManage$1.class
│ ├── CellsManage$Counter.class
│ ├── CellsManage.class
│ ├── CellsPane.class
│ ├── Controller.class
│ ├── Main.class
│ └── sample.fxml
└── src
└── sample
├── Cell.java
├── CellsManage.java
├── CellsPane.java
├── Controller.java
├── Main.java
└── sample.fxml
7 directories, 15 files