斐波那契数组-递归和循环实现

Posted Free Time Worker

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了斐波那契数组-递归和循环实现相关的知识,希望对你有一定的参考价值。

static void Main(string[] args)
{
Console.WriteLine(getnumfor(100));
Console.ReadKey();
}
static long getnum(long index)
{
if (index==1||index==2)
{
return 1;
}
else
{
return getnum(index - 1) + getnum(index - 2);
}
}
static long getnumfor(long index)
{
if (index == 1 || index == 2)
{
return 1;
}
else
{
long one = 1; long two = 1;
for (long i = 3; i <= index; i++)
{
if (i == 3)
{
one = 1;
two = 1;
}
else
{
long temp = one;
one = two;
two = temp + two;
}
}
return one + two;
}
}

以上是关于斐波那契数组-递归和循环实现的主要内容,如果未能解决你的问题,请参考以下文章

算法动态规划 - 斐波那契数

17. 计算斐波那契数(非递归方法)

剑指offer-斐波那契数列-递归和循环-python

php 两种方式实现求 斐波那契数

Python-递归复习-斐波那契-阶乘-52

非递归和递归分别实现求第n个斐波那契数。