以下代码片段来自维基百科,是标准的Hello World的序言!在Brainfuck的节目...
1. +++++ +++++ initialize counter (cell #0) to 10
2. [ use loop to set the next four cells to 70/100/30/10
3. > +++++ ++ add 7 to cell #1
4. > +++++ +++++ add 10 to cell #2
5. > +++ add 3 to cell #3
6. > + add 1 to cell #4
7. <<<< - decrement counter (cell #0)
8. ]
我理解这里发生的事情的要点,但我不明白的是第3到第6行所发生的事情的机制。如果+++++ +++++
在a[0]
中增加了10,为什么将指针递增1并执行++*ptr
七次会导致a[1]
等于70?不应该a[1] = 7
?似乎a[1]
到a[4]
神奇地增加了十倍,我不明白为什么。
答案 0 :(得分:2)
[]
个字符表示循环。它前面的10 +
表示循环运行的次数。当您了解各种commands含义和<<<< -
命令序列时,这一点就变得清晰了。
每次循环运行时,它都会执行以下步骤:
> move the pointer 1 space to the right
+++++ ++ add 7 to the current pointer
etc 3 more times > > >
<<<< - move back to the counter and decrement
这具有添加“7,10,3,1”10次的效果。换句话说,如果你在运行循环时在前5个指针位置写入值,就像它们在数组中一样:
[10, 0, 0, 0, 0] at first
[9, 7, 10, 3, 1] after first run
[8, 14, 20, 6, 2] after second
...
[0, 70, 100, 30, 10] up to this, the loop ends since the counter is 0,
and control continues
答案 1 :(得分:2)
这个网站上有一个很好的brainfuck可视化工具:http://fatiherikli.github.io/brainfuck-visualizer/它可以让大脑搞砸语言更容易理解
答案 2 :(得分:0)
++++++++++
使cell0等于10.然后,[
开始循环。在循环中,每次迭代都会向其他单元格添加一组数字。例如,它每次向单元格1添加7。循环的最后一行<<<< -
将指针放回cell0并递减它。这样,每次迭代都会使cell0倒计时。当它达到0时,循环停止并且程序继续。因此,它向cell1添加了10次10次,这个循环使得cell1 = 10 * 7。