IN101 project on Conway's Game of Life
Linked List Implementation Documentation

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:

{
int row;
int column;
linked_cell* next;
}

Installation

Usage

./app-list-loader filename
Options:
filemane: source textfile
./app-list-conway [-ipte?] filename
Options:
-i: generate image output for each step
-p: print simulation steps to the console
-t: consider the universe as a torus
-e: consider the universe as expandable (incompatible with a torus universe!)
-?: print source textfile formatting help
filename: source textfile to load the universe from