[算法]斐波那契

▼魔方 西西 提交于 2019-12-01 18:46:15
#include <iostream>
#include <cmath>

using namespace std;

//2.斐波那契--递归版本
//fn=1;当n=0,1
//fn=fn-1+fn-2;当n>1
//算法复杂度O(2^n)
static int fibonacci(int n)
{
    if (n<=1) return 1;
    return fibonacci(n - 1) + fibonacci(n - 2);
}
//2.斐波那契--非递归版本
//1/sqrt(5) ( pow((1+sqrt(5))/2,n+1) - pow((1-sqrt(5))/2,n+1)  )
//算法复杂度O(1)
static int fibonacci_iter(int n)
{
    return 1 / sqrt(5) *  (pow((1 + sqrt(5)) / 2, n + 1) - pow((1 - sqrt(5)) / 2, n + 1));
}

int main()
{
    cout<<fibonacci(5)<<endl;
    cout<<fibonacci_iter(5)<<endl;
    cout << "hello world" << endl;
    return 0;
}

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!