代码随想录 Leetcode509. 斐波那契数

题目:

代码随想录 Leetcode509. 斐波那契数_第1张图片


代码(首刷自解 2024年2月19日):

class Solution {
public:
    int fib(int n) {
        if (n < 2) return n;
        /*三个数表示加法算式里的 加数 加数 和*/
        /*初始化*/
        int leftVal = 0;
        int rightVal = 1;
        int sum = 0;
        for (int i = 2; i <= n; ++i) {
            sum = leftVal + rightVal;//递推公式
            cout <<"n = "<

你可能感兴趣的:(#,leetcode,---,easy,算法,leetcode,动态规划)