perl 遞迴兩例

來源:互聯網
上載者:User

標籤:目錄   遞迴   perl   遍曆   階乘   

Perl 作為一門文本處理語言,自然會有他的遞迴寫法,小弟這邊分享兩個例子,希望對大家能有用!

階乘(最經典的遞迴)

#!/usr/bin/perl -s my $Result = 1;sub GetResult{        my $num = shift;        if( $num != 1 ){                $Result = $Result * $num;                print "Result:$Result | num:$num\n";                $num--;                GetResult($num);        }}GetResult(‘10‘);

運行結果:

[[email protected] ~]# ./GetResult.pl Result:10 | num:10Result:90 | num:9Result:720 | num:8Result:5040 | num:7Result:30240 | num:6Result:151200 | num:5Result:604800 | num:4Result:1814400 | num:3Result:3628800 | num:2



遍曆linux的檔案目錄找出自己想要的檔案

[[email protected] ~]# cat Scan.pl #!/usr/bin/perl -s #use Cwd;sub ScanDirectory{    my $workdir = shift;    my $startdir = cwd;    chdir $workdir or die "Unable to enter dir $workdir:$! \n";    opendir my $DIR,‘.‘ or die "Unable to  open $workdir:$! \n";    my @names = readdir $DIR or die "Unable to read $workdir:$!\n";    closedir $DIR;    foreach my $name (@names){        next if ($name eq ‘.‘);        next if ($name eq ‘..‘);        if ( -d $name ){            ScanDirectory($name);            next;        }        if($name eq ‘core‘){            if (defined $r ){                unlink $name or die "Unable to delete $name :$! \n";            }            else{                print "Found one in $workdir!\n";            }        }    }    chdir $startdir or die "Unable to change to dir $startdir:$!\n";}ScanDirectory(‘.‘);


運行結果就是找到檔案或者刪除

perl 遞迴兩例

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.