Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Created Nth_Fib_number #hacktoberfest2019 #149

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions Nth_Fib_number#hacktoberfest
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#include <bits/stdc++.h>
using namespace std;

const int MAX = 10000;

int f[MAX] = {0};

int fib(int n) //This soluton is in O(log n) time complexity
{
if (n == 0)
return 0;
if (n == 1 || n == 2)
return (f[n] = 1);

if (f[n])
return f[n];

int k = (n & 1)? (n+1)/2 : n/2;

f[n] = (n & 1)? (fib(k)*fib(k) + fib(k-1)*fib(k-1))
: (2*fib(k-1) + fib(k))*fib(k);

return f[n];
}

int main()
{
int n;
cout<<"Enter the nth fibbonacci numner you want to find ~ ";
cin>>n;
cout<<endl;
cout<<"The nth order fibbonacci number is ~ "<<fib(n);
return 0;
}