blob: 8801bbb60de3a43a4f845c9c3409fa4038af8ac8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#!/usr/env perl
# PerlWeeklyChallenge 41-2
# Leonardo Numbers: - A sequence of numbers given by the recurrence:
# L(N) where L(0)=1, L(1)=1, and L(n)=L(n-1) + L(n-1) + 1
#
# This definition describes a recursive way to retrieve, and rapidly
# becomes processor intensive. If one caches the the numbers however
# as they are found, then the task is much easier. Furthermore
# https://en.wikipedia.org/wiki/Leonardo_number describes a non-recursive
# closed form method of deriving leonardo numbers.
#
# This solution describes all three methods l() ,L(), and closedForm()
# l() does no caching, L() caches, and closedForm is non-recursive.
use strict;
use warnings;
use feature 'say';
# hash containing known Leornado numbers. It is prepopulated with
# L(0) and L(1), but more added as discovered by L().
my %leonardos=(0=>1,1=>1,);
# Golden ratio numbers required for the closedForm() method
my $gr1=(1+sqrt(5))/2;
my $gr2=(1-sqrt(5))/2;
say "$_) ", L($_) for (0..20); # find the first 21 leonardo numbers
# This subroutines uses no caching and rapidly slowss after about
# 25 retrievals.
sub l{
my $ln=shift;
return $ln < 2?1:l($ln-2)+l($ln-1)+1;
}
# This retrieves Leonardo numbers from cache where needed
sub L{
my $ln=shift;
# find and store L(N) in the hash, if it does not exist already
unless (exists $leonardos{$ln}) {
$leonardos{$ln}=L($ln-2)+L($ln-1)+1
};
#return stored L(N)
return $leonardos{$ln};
}
# This is a closed form function that requires no recursion
# see https://en.wikipedia.org/wiki/Leonardo_number
sub closedForm{
my $ln=shift;
return 2*($gr1**($ln+1)-$gr2**($ln+1))/($gr1-$gr2) -1;
}
|