Leetcode 题目解析之 Best Time to Buy and Sell Stock

2022-02-14 13:17:05 浏览数 (1)

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.

输入用例

递减, 5,4,3,2,1

递增, 1,2,3,4,5

有增有减

定义int型变量lowest,存储从prices0..i的最小值

代码语言:javascript复制
    public int maxProfit(int[] prices) {
        if (prices.length <= 1) {
            return 0;
        }
        int maxProfit = 0;
        int lowest = Integer.MAX_VALUE;
        for (int v : prices) {
            lowest = Math.min(v, lowest);
            maxProfit = Math.max(maxProfit, v - lowest);
        }
        return maxProfit;
    }

0 人点赞