2021.09.01 - 008.斐波那契数列

258 篇文章 0 订阅

1. 题目

在这里插入图片描述

2. 思路

(1) BigInteger

  • BigInteger类可以存储无限长度的整数并进行运算,从前向后推导,最后取模即可。

(2) 数学法

  • 根据数学原理,每次相加就取模与最后再取模的结果是一样的,因此可以每推导一步就取模,防止溢出。

3. 代码

import java.math.BigInteger;

public class Test {
    public static void main(String[] args) {
        Solution1 solution = new Solution1();
        System.out.println(solution.fib(2));
    }
}

class Solution {
    public int fib(int n) {
        BigInteger curResult = new BigInteger("0");
        BigInteger nextResult = new BigInteger("1");
        while (n > 0) {
            nextResult = nextResult.add(curResult);
            curResult = nextResult.subtract(curResult);
            n--;
        }
        return curResult.mod(new BigInteger("1000000007")).intValue();
    }
}

class Solution1 {
    public int fib(int n) {
        int f0 = 0;
        int f1 = 1;
        while (n > 0) {
            f1 += f0;
            f0 = f1 - f0;
            f1 %= 1000000007;
            n--;
        }
        return f0;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值