代码高尔夫球:康威生命游戏代码高尔夫球:康威生命游戏(Code Golf: Conway's

2019-05-12 18:48发布

挑战:编写实现生命的细胞自动机约翰·H·康威的比赛中最短的程序。 [ 链接 ]

编辑:大约一周比赛之后,我选择了一个胜利者:pdehaan,管理由一个字符用Perl击败Matlab的解决方案。

对于那些还没有听说过生命游戏的谁,你把方形单元网格(最好是无穷大)。 细胞可存活(填充)的或死(空)。 我们确定哪些细胞是通过应用以下规则时间下一步活着:

  1. 少于两只活邻居的活细胞死亡,仿佛引起下人口。
  2. 有三个以上的活邻居的活细胞死亡,仿佛拥挤。
  3. 有两个或三个邻居住任何活细胞生命到下一代。
  4. 正好有三只活邻居的死细胞变活细胞,仿佛再现。

你的程序将在指定为命令行参数,以及迭代(N)执行的数目的40x80个字符的ASCII文本文件中读取。 最后,它会输出到ASCII文件out.txt系统的N次迭代后的状态。

下面是相关文件运行例如:

in.txt:

................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
..................................XX............................................
..................................X.............................................
.......................................X........................................
................................XXXXXX.X........................................
................................X...............................................
.................................XX.XX...XX.....................................
..................................X.X....X.X....................................
..................................X.X......X....................................
...................................X.......XX...................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................

重复100次:

Q:\>life in.txt 100

所得输出(out.txt)

................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
..................................XX............................................
..................................X.X...........................................
....................................X...........................................
................................XXXXX.XX........................................
................................X.....X.........................................
.................................XX.XX...XX.....................................
..................................X.X....X.X....................................
..................................X.X......X....................................
...................................X.......XX...................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................
................................................................................

规则:

  • 你需要使用文件I / O读/写文件。
  • 你需要接受一个输入文件,并作为参数迭代次数
  • 你需要生成out.txt(覆盖如果存在)指定格式
  • 并不需要处理板的边缘(环绕,无限电网.etc)
  • 编辑: 需要在你的输出文件中换行。

获胜者将通过字符数来决定。

祝好运!

Answer 1:

Perl中,127 129 135个字符

好不容易才脱掉一对夫妇更多的字符...

$/=pop;@b=split'',<>;map{$n=-1;@b=map{++$n;/
/?$_:($t=grep/X/,@b[map{$n+$_,$n-$_}1,80..82])==3|$t+/X/==3?X:'.'}@b}1..$/;print@b


Answer 2:

数学- 179 163 154 151个字符

 a = {2, 2, 2}; s = Export["out.txt", CellularAutomaton[{224, {2, {a, {2, 1, 2}, a}}, {1,1}}, (ReadList[#1, Byte, RecordLists → 2>1] - 46)/ 42, #2]〚#2〛 /. {0 → ".", 1 → "X"}, "Table"] & 
空间增加了可读性

与调用

    s["c:\life.txt", 100]

动画:

您也可以随着时间的推移,平均人口的图表:

从生成滑翔机一个不错的模式维基百科

据我所知Mathematica使用胞自动机生成随机数采用第30条。



Answer 3:

MATLAB 7.8.0(R2009a) - 174 171 161 150 138 131 128 124个字符

函数的语法:(124个字符)

下面是更容易阅读的版本(不必要的换行和空格添加了更好的格式):

function l(f,N),
  b=char(importdata(f))>46;
  for c=1:N,
    b=~fix(filter2(ones(3),b)-b/2-3);
  end;
  dlmwrite('out.txt',char(b*42+46),'')

而这里的程序是如何从MATLAB命令窗口中运行:

l('in.txt',100)

命令语法:(130个字)

有关调用函数有一个命令语法评论后,我挖得更深一些,并且发现了MATLAB的功能其实可以 用一个命令行格式调用 (有一些限制)。 你每天学习新的东西!

function l(f,N),
  b=char(importdata(f))>46;
  for c=1:eval(N),
    b=~fix(filter2(ones(3),b)-b/2-3);
  end;
  dlmwrite('out.txt',char(b*42+46),'')

而这里的程序是如何从MATLAB命令窗口中运行:

l in.txt 100


额外的挑战:Tweetable GIF制造商 - 136个字符

我想为了好玩我会看看我是否可以放弃输出到一个GIF文件,而不是一个文本文件,同时仍保持低于140字符数(即“tweetable”)。 这里是很好的格式代码:

function l(f,N),
  b=char(importdata(f))>46;
  k=ones(3);
  for c=1:N+1,
    a(:,:,:,c)=kron(b,k);
    b=~fix(filter2(k,b)-b/2-3);
  end;
  imwrite(~a,'out.gif')

虽然IMWRITE应该建立在默认情况下无限循环,GIF格式,GIF我只循环一次。 也许,这是已被固定在MATLAB的较新版本的bug。 因此,为了使动画持续时间更长,使进化步骤更容易地看到,我留在默认值的帧延迟(这似乎是围绕半秒)。 下面是使用的GIF输出高斯帕滑翔机枪模式:


改进

  • 更新1:改变了矩阵b从逻辑(即,“布尔”)类型到一个算一个除掉一些转换。
  • 更新2:缩短了代码加载文件和使用的功能MAGIC的伎俩创造更少的字符卷积核。
  • 更新3:简化的索引的逻辑,取代~~b+0b/42 ,和替换'same''s'作为一个参数CONV2 (和它令人惊讶地仍工作!)。
  • 更新4:我想我应该在网上搜索第一,因为洛伦来自MathWorks 的博客上讲述高尔夫和人生的游戏在今年早些时候。 我并入一些那里所讨论的技术,这需要我改变b回到逻辑矩阵。
  • 更新5: 从Aslak GRINSTED评论对上述博客文章指出两者的逻辑和执行卷积(使用功能更短的算法FILTER2 ),所以我“收编”(读“复制”),他的建议。 ;)
  • 更新6:从初始化修剪两个字符b和返工的逻辑回路中保存1点附加的字符。
  • 更新7:埃里克·桑普森在一封邮件,我可以代替指出cell2matchar ,节约4个字符。 感谢埃里克!


Answer 4:

红宝石1.9 - 189 178 159 155 153个字符

f,n=$*
c=IO.read f
n.to_i.times{i=0;c=c.chars.map{|v|i+=1
v<?.?v:('...X'+v)[[83,2,-79].map{|j|c[i-j,3]}.to_s.count ?X]||?.}*''}
File.new('out.txt',?w)<<c

编辑:处理与4个字符少换行。
可去除7个( v<?.?v:如果你允许它在活细胞到达边缘揍换行。



Answer 5:

Python的 - 282个字符

还不如让球滚动...

import sys
_,I,N=sys.argv;R=range(3e3);B=open(I).read();B=set(k for k in R if'A'<B[k])
for k in R*int(N):
 if k<1:b,B=B,set()
 c=sum(len(set((k+o,k-o))&b)for o in(1,80,81,82))
 if(c==3)+(c==2)*(k in b):B.add(k)
open('out.txt','w').write(''.join('.X\n'[(k in B)-(k%81<1)]for k in R))


Answer 6:

的Python 2.x的 - 二百三十四分之二百十字符

好吧,在210个字符的代码是一种欺骗。

#coding:l1
exec'xÚ=ŽA\nÂ@E÷sŠº1­ƒÆscS‰ØL™Æª··­âî¿GÈÿÜ´1iÖ½;Sçu.~H®J×Þ-‰­Ñ%ª.wê,šÖ§J®d꘲>cÉZË¢V䀻Eîa¿,vKAËÀå̃<»Gce‚ÿ‡ábUt¹)G%£êŠ…óbÒüíÚ¯GÔ/n×Xši&ć:})äðtÏÄJÎòDˆÐÿG¶'.decode('zip')

你可能不能够复制并粘贴此代码,并得到它的工作。 它应该是拉丁语-1(ISO-8859-1),但我认为它得到了沿途变态到Windows 1252的地方。 此外,您的浏览器可能会吞下一些非ASCII字符。

所以,如果它不工作,你可以生成纯老7位字符的文件:

s = """
23 63 6F 64 69 6E 67 3A 6C 31 0A 65 78 65 63 27 78 DA 3D 8E 41 5C 6E C2
40 0C 45 F7 73 8A BA 31 13 AD 83 15 11 11 C6 73 08 63 17 05 53 89 D8 4C
99 C6 AA B7 B7 AD E2 EE BF 47 C8 FF DC B4 31 69 D6 BD 3B 53 E7 75 2E 7E
48 AE 4A D7 DE 90 8F 2D 89 AD D1 25 AA 2E 77 16 EA 2C 9A D6 A7 4A AE 64
EA 98 B2 3E 63 C9 5A CB A2 56 10 0F E4 03 80 BB 45 16 0B EE 04 61 BF 2C
76 0B 4B 41 CB C0 E5 CC 83 03 3C 1E BB 47 63 65 82 FF 87 E1 62 55 1C 74
B9 29 47 25 A3 EA 03 0F 8A 07 85 F3 62 D2 FC ED DA AF 11 47 D4 2F 6E D7
58 9A 69 26 C4 87 3A 7D 29 E4 F0 04 74 CF C4 4A 16 CE F2 1B 44 88 1F D0
FF 47 B6 27 2E 64 65 63 6F 64 65 28 27 7A 69 70 27 29
"""

with open('life.py', 'wb') as f:
    f.write(''.join(chr(int(i, 16)) for i in s.split()))

这样做的结果是一个有效的210个字符的Python源文件。 所有我在这里所做的是使用ZIP压缩的原始Python源代码。 真正的作弊是,我所得到的字符串中使用非ASCII字符。 它仍然是有效的代码,它只是累赘。

未压缩的版本在234个字符,这仍然是值得尊敬的重量在,我想。

import sys
f,f,n=sys.argv
e=open(f).readlines()
p=range
for v in p(int(n)):e=[''.join('.X'[8+16*(e[t][i]!='.')>>sum(n!='.'for v in e[t-1:t+2]for n in v[i-1:i+2])&1]for i in p(80))for t in p(40)]
open('out.txt','w').write('\n'.join(e))

很抱歉的水平滚动,但在上述所有换行符是必需的,我数过,因为每个一个字符。

我不会尝试读取golfed代码。 的变量名随机选择以达到最佳压缩。 是的,我是认真的。 一个更好的格式和注释版本如下:

# get command-line arguments: infile and count
import sys
ignored, infile, count = sys.argv

# read the input into a list (each input line is a string in the list)
data = open(infile).readlines()

# loop the number of times requested on the command line
for loop in range(int(count)):
    # this monstrosity applies the rules for each iteration, replacing
    # the cell data with the next generation
    data = [''.join(

                # choose the next generation's cell from '.' for
                # dead, or 'X' for alive
                '.X'[

                    # here, we build a simple bitmask that implements
                    # the generational rules.  A bit from this integer
                    # will be chosen by the count of live cells in
                    # the 3x3 grid surrounding the current cell.
                    #
                    # if the current cell is dead, this bitmask will
                    # be 8 (0b0000001000).  Since only bit 3 is set,
                    # the next-generation cell will only be alive if
                    # there are exactly 3 living neighbors in this
                    # generation.
                    #
                    # if the current cell is alive, the bitmask will
                    # be 24 (8 + 16, 0b0000011000).  Since both bits
                    # 3 and 4 are set, this cell will survive if there
                    # are either 3 or 4 living cells in its neighborhood,
                    # including itself
                    8 + 16 * (data[y][x] != '.')

                    # shift the relevant bit into position
                    >>

                    # by the count of living cells in the 3x3 grid
                    sum(character != '.' # booleans will convert to 0 or 1
                        for row in data[y - 1 : y + 2]
                        for character in row[x - 1 : x + 2]
                    )

                    # select the relevant bit
                    & 1
                ]

               # for each column and row
                for x in range(80)
            )
            for y in range(40)
    ]

# write the results out
open('out.txt','w').write('\n'.join(data))

对不起,Pythonistas,对于C-ISH支架的格式,但我试图讲清楚什么每个支架被关闭。



Answer 7:

的Haskell - 284 272 232个字符

import System
main=do f:n:_<-getArgs;s<-readFile f;writeFile"out.txt"$t s$read n
p '\n'_='\n'
p 'X'2='X'
p _ 3='X'
p _ _='.'
t r 0=r
t r n=t[p(r!!m)$sum[1|d<-1:[80..82],s<-[1,-1],-m<=d*s,m+d*s<3240,'X'==r!!(m+d*s)]|m<-[0..3239]]$n-1


Answer 8:

F#,496

我可以减少这个有很多,但我喜欢这个,因为它仍然在球场和漂亮可读。

open System.IO
let mutable a:_[,]=null
let N y x=
 [-1,-1;-1,0;-1,1;0,-1;0,1;1,-1;1,0;1,1]
 |>Seq.sumBy(fun(i,j)->try if a.[y+i,x+j]='X' then 1 else 0 with _->0)
[<EntryPoint>]
let M(r)=
 let b=File.ReadAllLines(r.[0])
 a<-Array2D.init 40 80(fun y x->b.[y].[x])
 for i=1 to int r.[1] do 
  a<-Array2D.init 40 80(fun y x->
   match N y x with|3->'X'|2 when a.[y,x]='X'->'X'|_->'.')
 File.WriteAllLines("out.txt",Array.init 40(fun y->
  System.String(Array.init 80(fun x->a.[y,x]))))
 0

编辑

428

按要求,这里是我的下一个刺:

open System
let mutable a,k=null,Array2D.init 40 80
[<EntryPoint>]
let M r=
 a<-k(fun y x->IO.File.ReadAllLines(r.[0]).[y].[x])
 for i=1 to int r.[1] do a<-k(fun y x->match Seq.sumBy(fun(i,j)->try if a.[y+i,x+j]='X'then 1 else 0 with _->0)[-1,-1;-1,0;-1,1;0,-1;0,1;1,-1;1,0;1,1]with|3->'X'|2 when a.[y,x]='X'->'X'|_->'.')
 IO.File.WriteAllLines("out.txt",Array.init 40(fun y->String(Array.init 80(fun x->a.[y,x]))))
 0

这是一个减少14%,一些基本的高尔夫球场。 我不禁觉得我用失去阵列的弦,而不是一维数组,但不喜欢这样做,现在变换二维数组/。 请注意我是如何优雅地读取文件3200次初始化我的数组:)



Answer 9:

红宝石1.8:178 175个字符

f,n=$*;b=IO.read f
n.to_i.times{s=b.dup
s.size.times{|i|t=([82,1,-80].map{|o|b[i-o,3]||''}*'').count 'X'
s[i]=t==3||b[i]-t==?T??X:?.if s[i]>13};b=s}
File.new('out.txt','w')<<b

换行符显著(虽然都可以更换W /分号。)

编辑:固定的换行问题,并修整3个字符。



Answer 10:

Java中,441 ... 346


  • 更新1删除内,如果更丑陋
  • 更新2修正了一个错误,并获得了一个角色
  • 更新3使用大量的内存和数组,而忽视了一些边界问题。 大概几字符可以被保存。
  • 更新4中保存了几个字符。 由于BalusC。
  • 5个更新了一些小的变化去低于400,并使其只是额外位丑陋。
  • 一气呵成更新6现在的东西都是硬编码的可能,以及在读的确切数额。 加上一些更多的节省。
  • 更新7链的书面文件来保存一个字符。 再加上一些边角余料。

只是玩弄BalusC的解决方案。 有限的声誉意味着我不能添加任何东西作为对他的评论。

class M{public static void main(String[]a)throws Exception{int t=3240,j=t,i=new Integer(a[1])*t+t;char[]b=new char[i+t],p={1,80,81,82};for(new java.io.FileReader(a[0]).read(b,t,t);j<i;){char c=b[j],l=0;for(int n:p)l+=b[j+n]/88+b[j-n]/88;b[j+++t]=c>10?(l==3|l+c==90?88:'.'):c;}new java.io.FileWriter("out.txt").append(new String(b,j,t)).close();}}

更多阅读的版本(?):

class M{
 public static void main(String[]a)throws Exception{
  int t=3240,j=t,i=new Integer(a[1])*t+t;
  char[]b=new char[i+t],p={1,80,81,82};
  for(new java.io.FileReader(a[0]).read(b,t,t);j<i;){
    char c=b[j],l=0;
    for(int n:p)l+=b[j+n]/88+b[j-n]/88;
    b[j+++t]=c>10?(l==3|l+c==90?88:'.'):c;
  }
  new java.io.FileWriter("out.txt").append(new String(b,j,t)).close();
 }
}


Answer 11:

斯卡拉- 467 364 339个字符

object G{def main(a:Array[String]){val l=io.Source.fromFile(new java.io.File(a(0)))getLines("\n")map(_.toSeq)toSeq
val f=new java.io.FileWriter("out.txt")
f.write((1 to a(1).toInt).foldLeft(l){(t,_)=>(for(y<-0 to 39)yield(for(x<-0 to 79)yield{if(x%79==0|y%39==0)'.'else{val m=t(y-1)
val p=t(y+1);val s=Seq(m(x-1),m(x),m(x+1),t(y)(x-1),t(y)(x+1),p(x-1),p(x),p(x+1)).count('X'==_)
if(s==3|(s==2&t(y)(x)=='X'))'X'else'.'}})toSeq)toSeq}map(_.mkString)mkString("\n"))
f.close}}

我觉得有很大的提升空间...

[编辑]是的,这就是:

object G{def main(a:Array[String]){var l=io.Source.fromFile(new java.io.File(a(0))).mkString
val f=new java.io.FileWriter("out.txt")
var i=a(1).toInt
while(i>0){l=l.zipWithIndex.map{case(c,n)=>if(c=='\n')'\n'else{val s=Seq(-83,-82,-81,-1,1,81,82,83).map(_+n).filter(k=>k>=0&k<l.size).count(l(_)=='X')
if(s==3|(s==2&c=='X'))'X'else'.'}}.mkString
i-=1}
f.write(l)
f.close}}

[编辑]我有感觉还有更挤了...

object G{def main(a:Array[String]){val f=new java.io.FileWriter("out.txt")
f.write(((1 to a(1).toInt):\(io.Source.fromFile(new java.io.File(a(0))).mkString)){(_,m)=>m.zipWithIndex.map{case(c,n)=>
val s=Seq(-83,-82,-81,-1,1,81,82,83)count(k=>k+n>=0&k+n<m.size&&m(k+n)=='X')
if(c=='\n')c else if(s==3|s==2&c=='X')'X'else'.'}.mkString})
f.close}}


Answer 12:

下面的解决方案使用自己的自定义域特定的编程语言,我称之为NULL:

3499538

如果你想知道如何工作的:我的语言由每个程序只有一个statment的。 该声明表示属于代码高尔夫线程StackOverflow的线程ID。 我的编译器编译到这一个程序,查找JavaScript的解决方案最好(与SO API),它下载并运行在Web浏览器。

运行时可能是新的线程更好的(这可能需要一些时间为第upvoted的Javascript答案出现),但上档只需要很少的编码技能。



Answer 13:

的JavaScript / Node.js的- 233个236

a=process.argv
f=require('fs')
m=46
t=f.readFileSync(a[2])
while(a[3]--)t=[].map.call(t,function(c,i){for(n=g=0;e=[-82,-81,-80,-1,1,80,81,82][g++];)t[i+e]>m&&n++
return c<m?c:c==m&&n==3||c>m&&n>1&&n<4?88:m})
f.writeFile('out.txt',t)


Answer 14:

Ç - 300


只是想知道有多少小和丑陋我的Java解决方案就可以去参加C.减少到300,包括新行的预处理器位。 叶存储器释放到OS! 可以通过假设OS将关闭,也刷新文件保存〜20。

#include<stdio.h>
#include<stdlib.h>
#define A(N)j[-N]/88+j[N]/88

int main(int l,char**a){
  int t=3240,i=atoi(a[2])*t+t;
  char*b=malloc(i+t),*j;
  FILE*f;
  fread(j=b+t,1,t,fopen(a[1],"r"));
  for(;j-b-i;j++[t]=*j>10?l==3|l+*j==90?88:46:10)
      l=A(1)+A(80)+A(81)+A(82);
  fwrite(j,1,t,f=fopen("out.txt","w"));
  fclose(f);
}


Answer 15:

流行性腮腺炎:314个字符

L(F,N,R=40,C=80)
    N (F,N,R,C)
    O F:"RS" U F D  C F
    .F I=1:1:R R L F J=1:1:C S G(0,I,J)=($E(L,J)="X")
    F A=0:1:N-1 F I=1:1:R F J=1:1:C D  S G(A+1,I,J)=$S(X=2:G(A,I,J),X=3:1,1:0)
    .S X=0 F i=-1:1:1 F j=-1:1:1 I i!j S X=X+$G(G(A,I+i,J+j))
    S F="OUT.TXT" O F:"WNS" U F D  C F
    .F I=1:1:R F J=1:1:C W $S(G(N,I,J):"X",1:".") W:J=C !
    Q


Answer 16:

Java中,556 532 517 496 472 433 428 420 418 381个字符


  • 更新1:取代第一StringBufferAppendable和第二通过char[] 保存24个字符。

  • 更新2:找到一个较短的方式来读取文件到char[] 保存15个字符。

  • 更新3:更换一个if/else?:和合并char[]int声明。 保存21个字符。

  • 更新4:替换(int)f.length()c.length通过s 。 保存24个字符。

  • 更新5:做了改进为每Molehill的提示。 主要之一是硬编码字符长度,这样我可以摆脱File 。 保存39个字符。

  • 更新6:轻微的重构。 保存6个字符。

  • 更新7:更换Integer#valueOf()new Integer()和重构的循环。 保存8个字符。

  • 更新8:改进邻计算得出的。 保存2个字符。

  • 更新9:因为文件长度优化文件读取已经硬编码。 保存37个字符。


 import java.io.*;class L{public static void main(String[]a)throws Exception{int i=new Integer(a[1]),j,l,s=3240;int[]p={-82,-81,-80,-1,1,80,81,82};char[]o,c=new char[s];for(new FileReader(a[0]).read(c);i-->0;c=o)for(o=new char[j=s];j-->0;){l=0;for(int n:p)l+=n+j>-1&n+j<s?c[n+j]/88:0;o[j]=c[j]>13?l==3|l+c[j]==90?88:'.':10;}Writer w=new FileWriter("out.txt");w.write(c);w.close();}}

更可读的版本:

import java.io.*;
class L{
 public static void main(String[]a)throws Exception{
  int i=new Integer(a[1]),j,l,s=3240;
  int[]p={-82,-81,-80,-1,1,80,81,82};
  char[]o,c=new char[s];
  for(new FileReader(a[0]).read(c);i-->0;c=o)for(o=new char[j=s];j-->0;){
   l=0;for(int n:p)l+=n+j>-1&n+j<s?c[n+j]/88:0;
   o[j]=c[j]>10?l==3|l+c[j]==90?88:'.':10;
  }
  Writer w=new FileWriter("out.txt");w.write(c);w.close();
 }
}

写作后,关闭是absoletely强制性的,否则该文件是空的。 这本来会保存另有21个字符。

而且我还可以节省一个多字符,当我用46代替'.' 但javac和与精度的编译错误, 可能损失的Eclipse抽搐。 奇怪的东西。


注:此期望的输入文件, \n换行,而不是\r\n默认情况下会与Windows!



Answer 17:

PHP - 365 328 322 Characters.


list(,$n,$l) = $_SERVER["argv"];
$f = file( $n );
for($j=0;$j<$l;$j++){   
    foreach($f as $k=>$v){  
        $a[$k]="";      
        for($i=0;$i < strlen( $v );$i++ ){
            $t = 0;
            for($m=-1;$m<2;$m++){
                for($h=-1;$h<2;$h++){
                    $t+=ord($f[$k + $m][$i + $h]);
                }
            }
            $t-=ord($v[$i]);          
            $a[$k] .= ( $t == 494 || ($t == 452 && ord($v[$i])==88)) ?  "X" : "." ;
        }
    }
    $f = $a;
}       
file_put_contents("out.txt", implode("\n", $a )); 

I'm sure this can be improved upon but I was curious what it would look like in PHP. Maybe this will inspire someone who has a little more code-golf experience.

  • Updated use list() instead of $var = $_SERVER["argv"] for both args. Nice one Don
  • Updated += and -= this one made me /facepalm heh cant believe i missed it
  • Updated file output to use file_put_contents() another good catch by Don
  • Updated removed initialization of vars $q and $w they were not being used


Answer 18:

[R 340个字符

cgc<-function(i="in.txt",x=100){
    require(simecol)
    z<-file("in.txt", "rb")
    y<-matrix(data=NA,nrow=40,ncol=80)
    for(i in seq(40)){
        for(j in seq(80)){
            y[i,j]<-ifelse(readChar(z,1) == "X",1,0)
        }
        readChar(z,3)
    }
    close(z)
    init(conway) <- y
    times(conway)<-1:x
    o<-as.data.frame(out(sim(conway))[[100]])
    write.table(o, "out.txt", sep="", row.names=FALSE, col.names=FALSE)
}
cgc()

我感觉稍微作弊有包进行实际的自动为您附加,但我会用它因为我仍然要鞭打周围matricies和东西用“X”来代替1文件中读取。

这是我的第一个“代码高尔夫”,有趣的....



Answer 19:

C ++ - 492 454 386


我的第一个代码高尔夫;)

#include<fstream>
#define B(i,j)(b[i][j]=='X')
int main(int i,char**v){for(int n=0;n<atoi(v[2]);++n){std::ifstream f(v[1]);v[1]="out.txt";char b[40][83];for(i=0;i<40;++i)f.getline(b[i],83);std::ofstream g("out.txt");g<<b[0]<<'\n';for(i=1;i<39;++i){g<<'.';for(int j=1;j<79;++j){int k=B(i-1,j)+B(i+1,j)+B(i,j-1)+B(i,j+1)+B(i-1,j-1)+B(i+1,j+1)+B(i+1,j-1)+B(i-1,j+1);(B(i,j)&&(k<2||k>3))?g<<'.':(!B(i,j)&&k==3)?g<<'X':g<<b[i][j];}g<<".\n";}g<<b[0]<<'\n';}}

一个稍微修改后的版本,查找表+其他一些次要的技巧代替一些逻辑:

#include<fstream>
#define B(x,y)(b[i+x][j+y]=='X')
int main(int i,char**v){for(int n=0;n<atoi(v[2]);++n){std::ifstream f(v[1]);*v="out.txt";char b[40][83], O[]="...X.....";for(i=0;i<40;++i)f>>b[i];std::ofstream g(*v);g<<b[0]<<'\n';for(i=1;i<39;++i){g<<'.';for(int j=1;j<79;++j){O[2]=b[i][j];g<<O[B(-1,0)+B(1,0)+B(0,-1)+B(0,1)+B(-1,-1)+B(1,1)+B(1,-1)+B(-1,1)];}g<<".\n";}g<<b[0]<<'\n';}}


Answer 20:

Perl的 - 214个字符

什么,没有perl的条目吗?

$i=pop;@c=<>;@c=map{$r=$_;$u='';for(0..79)
{$K=$_-1;$R=$r-1;$u.=((&N.(&N^"\0\W\0").&N)=~y/X//
|(substr$c[$r],$_,1)eq'X')==3?'X':'.';}$u}keys@c for(1..$i);
sub N{substr$c[$R++],$K,3}open P,'>','out.txt';$,=$/;print P@c

运行带有:

  conway.pl INFILE #times 



Answer 21:

另一个Java尝试,361个字符

class L{public static void main(final String[]a)throws Exception{new java.io.RandomAccessFile("out.txt","rw"){{int e=88,p[]={-1,1,-80,80,-81,81,-82,82},s=3240,l=0,i=new Byte(a[1])*s+s,c;char[]b=new char[s];for(new java.io.FileReader(a[0]).read(b);i>0;seek(l=++l%s),i--){c=b[l];for(int n:p)c+=l+n>=0&l+n<s?b[l+n]/e:0;write(c>13?(c==49|(c|1)==91?e:46):10);}}};}}

多一点可读

class L {
    public static void main(final String[]a) throws Exception {
        new java.io.RandomAccessFile("out.txt","rw"){{
            int e=88, p[]={-1,1,-80,80,-81,81,-82,82},s=3240,l=0,i=new Byte(a[1])*s+s,c;
            char[] b = new char[s];
            for (new java.io.FileReader(a[0]).read(b);i>0;seek(l=++l%s),i--) {
                c=b[l];
                for (int n:p)
                    c+=l+n>=0&l+n<s?b[l+n]/e:0;
                write(c>13?(c==49|(c|1)==91?e:46):10);
            }
        }};
    }
}

非常相似,Molehill的的版本。 我已经尝试使用不同的FileWriter并没有额外的变量来计算小区的邻居。 不幸的是, RandomAccessFile是一个相当长的名字,并且要求你通过一个文件的访问模式。



Answer 22:

锈- 469字符不知道我是否应该张贴此这里,(这个职位是3岁),但无论如何,我尝试这一点,在锈(0.9):

use std::io::fs::File;fn main(){
let mut c=File::open(&Path::new(std::os::args()[1])).read_to_end();
for _ in range(0,from_str::<int>(std::os::args()[2]).unwrap()){
let mut b=c.clone();for y in range(0,40){for x in range(0,80){let mut s=0;
for z in range(x-1,x+2){for t in range(y-1,y+2){
if z>=0&&t>=0&&z<80&&t<40&&(x !=z||y !=t)&&c[t*81+z]==88u8{s +=1;}}}
b[y*81+x]=if s==3||(s==2&&c[y*81+x]==88u8){88u8} else {46u8};}}c = b;}
File::create(&Path::new("out.txt")).write(c);}

对于有兴趣的人,这里是之前的一些侵略性的高尔夫球的代码:

use std::io::fs::File;
fn main() {
    let f = std::os::args()[1];
    let mut c = File::open(&Path::new(f)).read_to_end();    
    let n = from_str::<int>(std::os::args()[2]).unwrap();   
    for _ in range(0,n)
    {
        let mut new = c.clone();
        for y in range(0,40) {
            for x in range(0,80) {
                let mut sum = 0;
                for xx in range(x-1,x+2){
                    for yy in range(y-1,y+2) {
                        if xx >= 0 && yy >= 0 && xx <80 && yy <40 && (x != xx || y != yy) && c[yy*81+xx] == 88u8
                        { sum = sum + 1; }
                    }
                }
                new[y*81+x] = if sum == 3 || (sum == 2 && c[y*81+x] == 88u8) {88u8} else {46u8};                    
            }
        }
        c = new;
    }
    File::create(&Path::new("out.txt")).write(c);
}


Answer 23:

ET瞧你可能需要使用这个HTML文件。 没有文件输入,但是,没有工作一个textarea! 也有一些HTML和启动和VAR。 主程序只有235个字符。 这是手工精缩JS。

<!DOCTYPE html>
<html><body><textarea id="t" style="width:600px;height:600px;font-family:Courier">
</textarea></body><script type="text/javascript">var o,c,m=new Array(3200),
k=new Array(3200),y,v,l,p;o=document.getElementById("t");for(y=0;y<3200;y++)
{m[y]=Math.random()<0.5;}setInterval(function(){p="";for(y=0;y<3200;y++){c=0;
for(v=-1;v<2;v+=2){c+=m[y-1*v]?1:0;for(l=79;l<82;l++)c+=m[y-l*v]?1:0;}
k[y]=c==3||m[y]&&c==2;}p="";for(y=0;y<3200;y++){p+=(y>0&&y%80==0)?"\n":"";
m[y]=k[y];p+=(m[y]?"O":"-");}o.innerHTML=p;},100);</script></html>


Answer 24:

一个经典的模式

***
..*
.*

我的头像是用我的版本生命游戏的使用这种模式和规则(请注意,这不是23/3)发布:

#D Thanks to my daughter Natalie
#D Try at cell size of 1
#R 8/1
#P -29 -29
.*********************************************************
*.*******************************************************.*
**.*****************************************************.**
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
****************************.*.****************************
***********************************************************
****************************.*.****************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
***********************************************************
**.*****************************************************.**
*.*******************************************************.*
.*********************************************************

恕我直言 - 我学会了康威生命游戏的伎俩不写短代码,但是代码,可以快速完成复杂的生命形式。 采用经典的图案上方和594441个的细胞包裹的世界里,我曾经做的最好的是约1,000代/秒。

另一种简单的模式

**********
.
................*
.................**
................**.......**********

和滑翔机

........................*...........
......................*.*...........
............**......**............**
...........*...*....**............**
**........*.....*...**..............
**........*...*.**....*.*...........
..........*.....*.......*...........
...........*...*....................
............**......................


文章来源: Code Golf: Conway's Game of Life