IN101 project on Conway's Game of Life
|
The linked list implementation of Conway's game of life uses, unsurprisingly, a linked list to store the alive cells of a universe.
Each cell is of the following structure:
make linkedlist
make linkedlist-compile-all
app-list-loader
to load a universe from a source textfile and print it as is to the console, using the linked list implementation.app-list-conway
to load a universe from a source textfile and simulate the given amount of steps, using the linked list implementation.