#include <iostream>
using namespace std;
int F[10]; //all array elements are initialized with -1
int fib(int n)
{
if (n<=1)
{
F[n] = n;
return n;
}
else
{
if (F[n-2] == -1)
F[n-2]= fib(n-2);
if (F[n-1] == -1)
F[n-1] = fib (n-1);
return F[n-2] + F[n-1];
}
}
int main()
{
for(int i=0; i<10; i++)
F[i]=-1;
cout << fib(9);
return 0;
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter