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

NowCode

题目

假设把某股票的价格按照时间先后顺序存储在数组中,请问买卖该股票一次可能获得的最大利润是多少?

示例 1:

输入: [7,1,5,3,6,4]
输出: 5
解释: 在第 2 天(股票价格 = 1)的时候买入,在第 5 天(股票价格 = 6)的时候卖出,最大利润 = 6-1 = 5 。
注意利润不能是 7-1 = 6, 因为卖出价格需要大于买入价格。

解题思路

class Solution {
    public int maxProfit(int[] prices) {
        if(prices.length == 0)
            return 0;
        int maxV = 0;
        int minV = prices[0];

        for(int i = 0; i < prices.length; i++) {
            minV = Math.min(minV, prices[i]);
            maxV = Math.max(prices[i] - minV, maxV);
        }
        return maxV;
    }
}

猜你喜欢

转载自blog.csdn.net/weixin_43469680/article/details/108397618
今日推荐