[算法]斐波那契

Posted tailiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[算法]斐波那契相关的知识,希望对你有一定的参考价值。

#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;
}

技术图片

以上是关于[算法]斐波那契的主要内容,如果未能解决你的问题,请参考以下文章

C语言用递推和递归两种算法完成斐波那契数列的计算,给一下代码

[算法学习]斐波那契数计算

算法笔记_001:斐波那契数的多种解法

斐波那契数列算法

斐波那契数列的实现算法

Python算法三种斐波那契数列算法