122. 买卖股票的最佳时机II

贪心

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

        int money = 0;

        for (int i = 0; i + 1 < prices.length; i++) {

            /**
             * 贪心思路
             * 局部最优:收集每天的正利润,全局最优:求得最大利润。
             * 只要今天的价格比明天大,就略过
             * 否则就今天买,明天卖,然后明天继续判断
             */
            if (prices[i] >= prices[i + 1]) {
                continue;
            }
            else {
                money += prices[i + 1] - prices[i];
            }
        }

        return money;
    }
}

/**
 * 时间复杂度 O(n)
 * 空间复杂度 O(1)
 */

https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-ii/

上一篇:chrome-插件收集


下一篇:「在 Kubernetes 上运行 Pgpool-Il」实现 PostgreSQL 查询(读)负载均衡和连接池