Leetcode:Best Time to Buy and Sell Stock ⅠⅡⅢ

本文介绍了三种不同条件下的股票买卖最佳时机算法实现:只允许进行一次交易、允许进行多次交易及最多可完成两次交易的情况。通过动态规划的方法,分别求解出最大利润。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Best Time to Buy and Sell Stock

Say you have an array for which the ith element is the price of a given stock on day i.

If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock), design an algorithm to find the maximum profit.

因为只能交易一次,动态规划,不停寻找中···
利润=卖出的高价-收入的低价

把一段时间内的最低价得到,用其之后的价格-低价,求出最大利润
如果有更低的价格出现,更变低价,求得利润,继续和之前的最大利润比较。

public class Solution {
    public int maxProfit(int[] prices) {

        if(prices.length<2)
        return 0;
        //最大利润
        int maxprofit=0;
        //最低价格,初始为第一天的价格
        int minprice=prices[0];
        for(int i=1;i<prices.length;i++){
            //比较得到当前的最低价格
            minprice=Math.min(minprice,prices[i]);
            //计算利润,求出当前的最大利润
            maxprofit=Math.max(maxprofit,prices[i]-minprice);
        }

        return maxprofit;
    }
}

Best Time to Buy and Sell Stock II

Say you have an array for which the ith element is the price of a given stock on day i.

Design an algorithm to find the maximum profit.

You may complete as many transactions as you like (ie, buy one and sell one share of the stock multiple times). However, you may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).

因为可以随意买卖次数,只要有利润就买卖即可

public class Solution {
    public int maxProfit(int[] prices) {
        if (prices.length < 2) return 0;

        int maxProfit = 0;
        for (int i = 1; i < prices.length; i++) {
            int diff = prices[i] - prices[i - 1];
            if (diff > 0) {
                maxProfit += diff;
            }
        }

        return maxProfit;
    }
}

Best Time to Buy and Sell Stock III

Say you have an array for which the ith element is the price of a given stock on day i.

Design an algorithm to find the maximum profit. You may complete at most two transactions.

开始想不出有什么好的办法,后来看到了别人的解法,茅塞顿开

因为2次交易,所以我们可以找出第i天前交易一次的最大利润,和第i天后的交易的最大利润!

于是就是正着寻找一遍找出了第i天前交易的最大利润
反着来再来一遍找到第i天后的交易的最大利润

public class Solution {
    public int maxProfit(int[] prices) {
        if (prices.length < 2) 
            return 0;
        int maxProfit=0;
        int n = prices.length;
        int[] preProfit = new int[n];
        int[] postProfit = new int[n];
        int curMin = prices[0];
        int curMax = prices[n - 1];


        for(int i = 1; i < prices.length; i++) {
            //找到了第i天前的最大利润
            curMin=Math.min(curMin,prices[i]);
            preProfit[i]=Math.max(preProfit[i-1],prices[i]-curMin);
            //第i天后的最大利润
            curMax=Math.max(curMax,prices[n-i-1]);
            postProfit[n-1-i]=Math.max(postProfit[n-i],curMax-prices[n-1-i]);
        }

        for(int i=0;i<prices.length;i++){
        //求和,求出最大值
                                 maxProfit=Math.max(maxProfit,preProfit[i]+postProfit[i]);
        }

        return maxProfit;

    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值