Skip to content

m3ller/gameOfLife

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gameOfLife

Making Conway's Game of Life, a game where one watches colonies of cells evolve by following a simple set of rules. Cells in the game come to life, live, or die with each time-step of the game.

The game is displayed on the terminal.

Code overview

The gameboard is essentially a sparse matrix. Rather than storing and tracking the entire matrix, I am only tracking the live cells at each iteration and applying the rules on them accordingly. After each iteration, the board is updated and displayed on the terminal.

About

C++ implementation of the Game of Life

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors