Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

in C, in C Note History: Project 2 - Conway's Game of Life CONWAY'S GAME OF LIFE Submit your solution to Zybook Project 2 https:/learn.zybooks.com/zybook/UICCS107TheysSpring2018/chapter/11/section/15

in C, image text in transcribed

in C image text in transcribed

Note History: Project 2 - Conway's Game of Life CONWAY'S GAME OF LIFE Submit your solution to Zybook Project 2 https:/learn.zybooks.com/zybook/UICCS107TheysSpring2018/chapter/11/section/15 before 11:59pm on March 9th From Wikipedia https://en.wikipedia.org/wiki/Conway%27s-Game of Life The universe of the Game of Life is an infinite two-dimensional orthogonal grid of square cells, each of which is in one of two possible states, alive or dead, or "populated" or "unpopulated". Every cell interacts with its eight neighbours, which are the cells that are horizontally, vertically, or diagonally adjacent. At each step in time, the following transitions occur: 1. Any live cell with fewer than two live neighbours dies, as if caused by underpopulation. 2. Any live cell with two or three live neighbours lives on to the next generation. 3. Any live cell with more than three live neighbours dies, as if by overpopulation. 4. Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction. The initial pattern constitutes the seed of the system. The first generation is created by applying the above rules simultaneously to every cell in the seed-births and deaths occur simultaneously, and the discrete moment at which this happens is sometimes called a tick (in other words, each generation is a pure function of the preceding one). The rules continue to be applied repeatedly to create further generations. Your project is to create a game of life on a 2-d grid that will be no more than 50 x 50 Your code should be able to simulate and display up to 50 timesteps. The exact size of the grid and the number of timesteps to be simulated will be specified by the user. Your code must have a 3d array declared in main of size [MAXSIZE][MAXSIZE]IMAXTIME+1], where MAXSIZE is 50 and MAXTIME is 50 Your code must include the following two functions int neighbors (int anArray[MAXSIZE] [MAXSIZE] [MAXTIME+1], int i, int j, int size, int step) // returns the number of neighbors of position i,j that are alive at time step void printGrid(int myGrid[MAXSIZE] [MAXSIZE] [MAXTIME+1],int size,int step) // print the grid of size sizexsize at time step

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

Write a program to check an input year is leap or not.

Answered: 1 week ago

Question

Write short notes on departmentation.

Answered: 1 week ago

Question

What are the factors affecting organisation structure?

Answered: 1 week ago

Question

What are the features of Management?

Answered: 1 week ago

Question

Briefly explain the advantages of 'Management by Objectives'

Answered: 1 week ago

Question

2. What are the prospects for these occupations?pg 87

Answered: 1 week ago