This project was a re-creation of Conway’s Game of Life. The idea is to animate cellular automation based on a set of rules. The user can input coordinates of live cells interactively or through a text file, and the program
Crosswords
This program generates a crossword puzzle from user input. It sorts the list of words given through standard input or read from a file, then loops through a two dimensional array to place each word most efficiently. Then, the program
Fractals
The fractals below were created in C++ using the gfx library , and careful recursion. They are all self similar structures, each of them made up of shapes changing only in position and size in each iteration. Major Lessons Recursion