欧拉计划009 [25] 1000-digit Fibonacci number(大数斐波那契)

1000-digit Fibonacci number

Problem 25
The Fibonacci sequence is defined by the recurrence relation:

Fn = Fn−1 + Fn−2, where F1 = 1 and F2 = 1.
Hence the first 12 terms will be:

F1 = 1
F2 = 1
F3 = 2
F4 = 3
F5 = 5
F6 = 8
F7 = 13
F8 = 21
F9 = 34
F10 = 55
F11 = 89
F12 = 144
The 12th term, F12, is the first term to contain three digits.

What is the index of the first term in the Fibonacci sequence to contain 1000 digits?

题意解析

Fibonacci数列第12个,F[12]是第一个三位数的数字,求出第一个长度为1000位的斐波那契数的序列数?

这个属于大数Fibonacci的运算,然后注意第一项是1,第二项也是1。我当时总想着第0项和第1项是1,所以结果就是差了1。然后Fibonacci数超过1000位,所以二维数组先开的num[5000][1200]这么大的。
然后就是如何求大数Fibonacci,这里就是利用大整数的想法,就是需要判断进位的地方注意一下的。

程序代码 C

#include <stdio.h>
#include <string.h>
int num[5000][1200];

void get_Fibonacci(){
    int i,j;
    for(i=3;i<5000;i++){
        int carry;
        for(j=0;j<1000;j++){    //从第0为加到最后一位的
            num[i][j]=(num[i-1][j]+num[i-2][j]+carry)%10; 
            carry=(num[i-1][j]+num[i-2][j]+carry)/10; //然后每一步都需判断进位
        }
    }
} 

int main()
{
    int i,j,n;
    num[1][0]=1;
    num[2][0]=1;
    get_Fibonacci();
    for(n=1;n<5000;n++){
        if(num[n][999]){
            printf("%d\n",n);
            break;  
        }
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值