Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

2 The Game of Life (45 points) Submit your pseudo-code for this problem Imagine a world of organisms living in a two-dimensional cell grid of

image text in transcribedimage text in transcribed

2 The Game of Life (45 points) Submit your pseudo-code for this problem Imagine a world of organisms living in a two-dimensional cell grid of size n m. Each organism can only occupy a single cell. Each cell, except those at the boundaries (the edge of the world), has exactly eight neighboring cells (up, down, left, right, and four diagonals). The cells at the boundaries have less than eight neighboring cells. The world evolves from one generation to the other using the following rules 1. Any organism with fewer than two neighbors (a neighbor is an organism that lives in a neighboring cell) dies (out of loneliness) 2. Any organism with more than three live neighbors dies (overcrowding) 3. Any organism with two or three live neighbors lives on to the next generation 4. Any vacant cell with exactly three live neighbors becomes occupied by a new organism (birth) Write a C program that plays the game of life. Your program should 1. Read an initial world configuration from a file world.txt. The world is of size 10x10 2. Evolve the world to the next generation 3. Display the old and new world generation on screen 4. Ask the user if he/she wants to continue evolution to the next generation. 5. Display a message if the entire world is extinct You should ignore the cells at the boundary of the world since the do not have enough neighbors to play the game For a modular design, you should use the following functions void read.world(FILE *inp, int [][SIZE); // reads a world from a file to array x void print-world(int [] [SIZE]); // prints world stored in array x on screen int evolve(int x SIZE], int row, int col); // returns the evolved cell value for cell x[row col void copy-world(int [] [SIZE], nt yl ] [SIZE)); // copies world in x to y int extinct(int x| SIZED;// returns a zero if all organisms are extinct

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

Database Systems An Application Oriented Approach Complete Version

Authors: Michael Kifer, Arthur Bernstein, Richard Lewis

2nd Edition

0321268458, 978-0321268457

More Books

Students also viewed these Databases questions