gpt4 book ai didi

perl - 如何使用 List::Gen 编写 Collat​​z 序列?

转载 作者:行者123 更新时间:2023-12-02 03:25:37 24 4
gpt4 key购买 nike

我喜欢 List::Gen 的函数式编程范式带给 Perl。写一个 Collatz sequence它应该是可行的,尽管有点挑战,因为列表的长度不是先验的。

我在序列末尾缺少最后的 1,代码如下:

use List::Gen '*';
iterate{ $_%2 ? 3*$_+1 : $_/2 }->from( 23 )->while( '!=1' )->say;

打印:

23 70 35 106 53 160 80 40 20 10 5 16 8 4 2

对于这种方法,我本质上需要的是 do-while。文档提到了 while_,它是 while 的“先行”版本,但解释器找不到这样的方法。

最佳答案

这有效(作为开始):

use List::Gen '*';
iterate{$_%2 ? 3*$_+1 : $_/2}->from(23)->until(sub{$_ == 1 ? (($delay = 1), 0) : $delay})->say();

让我看看我是否可以从中创建一个函数并使 $delay 安全...

这应该可以,但不能,因为传递给 until 的函数被调用了两次(第一个值除外):

use List::Gen '*';
sub after { use feature 'state'; $f = shift(); $f = '$_' . $f unless (ref($f)); sub { state $d; $r = $d; $d = eval $f; $r } }
iterate{ $_%2 ? 3*$_+1 : $_/2 }->from( 23 )->until(after('==1'))->say;

这适用于双函数调用:

use List::Gen '*';
sub after { use feature 'state'; $f = shift(); $f = '$_' . $f unless (ref($f)); sub { state($d1,$d2); $r = $d2; $d2 = $d1; $d1 = eval $f; $r } }
iterate{ $_%2 ? 3*$_+1 : $_/2 }->from( 23 )->until(after('==1'))->say;

仍在尝试理解为什么 until 函数在第一次调用后被调用两次。

它只适用于 until 而不是 while

上面的代码只适用于字符串参数;这个与函数引用一起使用:

#!/usr/bin/perl
use strict;
use List::Gen '*';

sub after {
use feature 'state';
my $f = shift();
my $c = ref($f) eq 'CODE'
? '&$f()'
: '$_' . $f;
sub {
state($d1,$d2);
my $r = $d2;
$d2 = $d1;
$d1 = eval($c);
$f;
$r
}
}
iterate{$_%2 ? 3*$_+1 : $_/2}->from(23)->until(after('==1'))->say;
iterate{$_%2 ? 3*$_+1 : $_/2}->from(23)->until(after(sub{$_ == 1}))->say;

关于perl - 如何使用 List::Gen 编写 Collat​​z 序列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30521140/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com