ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

Leetcode剑指Offer刷题 - 第八天

2022-01-31 19:07:25  阅读:140  来源: 互联网

标签:Offer int 1000000007 second prices first Leetcode 刷题


Leetcode剑指Offer刷题指南:

Leetcode剑指Offer刷题-学习计划目录_DEGv587的博客-CSDN博客

剑指 Offer 10- I. 斐波那契数列 

解法:动态规划,如果用递归会超时)

注意:题内有要求 --> 答案需要取模 1e9+7(1000000007)

class Solution {
    public int fib(int n) {
        if (n <= 0) return n;
        int first = 0;
        int second = 1;
        while (n > 1) {
            second += first;
            first = second - first;
            second %= 1000000007;
            n--;
        }
        return second;
    }
}

剑指 Offer 10- II. 青蛙跳台阶问题

解法:动态规划(和上一道题一样)

注意:题内有要求 --> 答案需要取模 1e9+7(1000000007)

class Solution {
    public int numWays(int n) {
        if (n == 1 || n == 0) return 1;
        int first = 1;
        int second = 1;
        while (n > 1) {
            second += first;
            first = second - first;
            second %= 1000000007;
            n--;
        }

        return second;
    }
}

剑指 Offer 63. 股票的最大利润

解法一:暴力循环

class Solution {
    public int maxProfit(int[] prices) {
        int ret = 0;

        for (int i = 0; i < prices.length; ++i) {
            for (int j = i; j < prices.length; ++j) {
                int tmp = prices[j] - prices[i];
                ret = Math.max(tmp, ret);
            }
        }
        return ret;
    }
}

解法二:一次遍历,维护最小数和差值

class Solution {
    public int maxProfit(int[] prices) {
        if (prices == null || prices.length <= 1) {
            return 0;
        }
        int ret = 0, min = prices[0];
        for (int i = 1; i < prices.length; ++i) {
            if (prices[i] <= min) {
                min = prices[i];
            } else {
                ret = Math.max(ret, prices[i] - min);
            }
        }

        return ret;
    }
}

标签:Offer,int,1000000007,second,prices,first,Leetcode,刷题
来源: https://blog.csdn.net/DEGv587/article/details/122761099

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有