The Algorithm Design Manual Second Edition


Fibonacci Numbers by Recursion



Download 5,51 Mb.
Pdf ko'rish
bet217/488
Sana31.12.2021
Hajmi5,51 Mb.
#273936
1   ...   213   214   215   216   217   218   219   220   ...   488
Bog'liq
2008 Book TheAlgorithmDesignManual

8.1.1

Fibonacci Numbers by Recursion

The Fibonacci numbers were originally defined by the Italian mathematician Fi-

bonacci in the thirteenth century to model the growth of rabbit populations. Rab-

bits breed, well, like rabbits. Fibonacci surmised that the number of pairs of rabbits

born in a given year is equal to the number of pairs of rabbits born in each of the

two previous years, starting from one pair of rabbits in the first year. To count the

number of rabbits born in the nth year, he defined the recurrence relation:

F

n

F



n

1

F



n

2

with basis cases F

0

= 0 and F



1

= 1. Thus, F

2

= 1, F



3

= 2, and the series continues



{3581321345589144, . . .}. As it turns out, Fibonacci’s formula didn’t do a

very good job of counting rabbits, but it does have a host of interesting properties.

Since they are defined by a recursive formula, it is easy to write a recursive

program to compute the nth Fibonacci number. A recursive function algorithm

written in C looks like this:

long fib_r(int n)

{

if (n == 0) return(0);



if (n == 1) return(1);

return(fib_r(n-1) + fib_r(n-2));

}



8 . 1

C A C H I N G V S . C O M P U T A T I O N



275

F(3)


F(2)

F(1)


F(0)

F(1)


F(2)

F(1)


F(2)

F(1)


F(4)

F(3)


F(0)

F(1)


F(2)

F(1)


F(2)

F(1)


F(4)

F(3)


F(0)

F(1)


F(5)

F(0)


F(0)

F(6)=8


Figure 8.1: The computation tree for computing Fibonacci numbers recursively

The course of execution for this recursive algorithm is illustrated by its recursion



tree, as illustrated in Figure

8.1


. This tree is evaluated in a depth-first fashion, as

are all recursive algorithms. I encourage you to trace this example by hand to

refresh your knowledge of recursion.

Note that (4) is computed on both sides of the recursion tree, and (2)

is computed no less than five times in this small example. The weight of all this

redundancy becomes clear when you run the program. It took more than 7 minutes

for my program to compute the first 45 Fibonacci numbers. You could probably

do it faster by hand using the right algorithm.

How much time does this algorithm take to compute (n)? Since F

n+1

/F

n



φ = (1 +

5)/2



≈ 1.61803, this means that F

n

1.6

n

. Since our recursion tree has

only 0 and 1 as leaves, summing up to such a large number means we must have at

least 1.6



n

leaves or procedure calls! This humble little program takes exponential

time to run!


Download 5,51 Mb.

Do'stlaringiz bilan baham:
1   ...   213   214   215   216   217   218   219   220   ...   488




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish