The Algorithm Design Manual Second Edition


Fibonacci Numbers by Dynamic Programming



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

8.1.3

Fibonacci Numbers by Dynamic Programming

We can calculate F



n

in linear time more easily by explicitly specifying the order of

evaluation of the recurrence relation:

long fib_dp(int n)

{

int i;


/* counter */

long f[MAXN+1];

/* array to cache computed fib values */

f[0] = 0;

f[1] = 1;

for (i=2; i<=n; i++)

f[i] = f[i-1]+f[i-2];

return(f[n]);

}

We have removed all recursive calls! We evaluate the Fibonacci numbers from



smallest to biggest and store all the results, so we know that we have F

i

1

and


F

i

2

ready whenever we need to compute F



i

. The linearity of this algorithm should




278

8 .


D Y N A M I C P R O G R A M M I N G

be apparent. Each of the values is computed as the simple sum of two integers

in total O(n) time and space.

More careful study shows that we do not need to store all the intermediate

values for the entire period of execution. Because the recurrence depends on two

arguments, we only need to retain the last two values we have seen:

long fib_ultimate(int n)

{

int i;



/* counter */

long back2=0, back1=1;

/* last two values of f[n] */

long next;

/* placeholder for sum */

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

for (i=2; i

next = back1+back2;

back2 = back1;

back1 = next;

}

return(back1+back2);



}

This analysis reduces the storage demands to constant space with no asymptotic

degradation in running time.


Download 5,51 Mb.

Do'stlaringiz bilan baham:
1   ...   215   216   217   218   219   220   221   222   ...   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