Can we represent Conway's game of life using graphs?

And is there any example out there? Or any help would be much appreciated.

link|improve this question

possible duplicate of Writing A "Conway's Game of Life" Program – Henk Holterman Sep 14 '10 at 13:49
I want an implementation using Graphs – Saurabh Sep 14 '10 at 13:51
@Henk: I want an implementation using graphs. – Saurabh Sep 14 '10 at 13:55
And, if you need a graph library for .NET you can use quickgraph --> quickgraph.codeplex.com – digEmAll Sep 14 '10 at 13:58
3  
An arbitrary graph seems like a bad data structure for standard Life played on a rectangular grid. Graphs are unnecessarily large and slow, it's not easy or fast to convert them to bitmaps, and they typically do not exploit any of the regularity in the rectangularity of the lattice. Nor do you get interesting space/time compressions like you can do with Gosper's algorithm. Can you explain why you want to use a graph? Do you want to experiment with Life on an unusual topology other than a rectangular grid, for instance? – Eric Lippert Sep 14 '10 at 14:29
show 1 more comment
feedback

2 Answers

up vote 0 down vote accepted

http://igoro.com/archive/self-printing-game-of-life-in-c/

http://www.c-sharpcorner.com/Forums/ShowMessages.aspx?ThreadID=6819

http://forums.asp.net/t/1063384.aspx

link|improve this answer
Is there a way we can do it using graphs? – Saurabh Sep 14 '10 at 13:58
cool links - thanks for sharing! – AJ. Sep 14 '10 at 14:03
@saurabh I don't see how graphs can be applied here. – FractalizeR Sep 15 '10 at 12:15
feedback

They used to calculate it by hand, so yes - yes you can!

I suspect that's not the answer you want to hear though, can you clarify your question ?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.