8.力扣c++刷题-->买股票的最佳时机2

题目:给定一个数组 prices ,它的第 i 个元素 prices[i] 表示一支给定股票第 i 天的价格。
你只能选择 某一天 买入这只股票,并选择在 未来的某一个不同的日子 卖出该股票。设计一个算法来计算你所能获取的最大利润。返回你可以从这笔交易中获取的最大利润。如果你不能获取任何利润,返回 0 。
解题关键:获取最大利润,因为不考虑交易次数,那么收集所有上坡(即),就可以获的利润最大化。

class Solution {
public:
    int maxProfit(vector<int>& prices) 
    {
        int profit = 0;
        int size = prices.size();
        //收集全部上坡
        for(int i = 0; i < size-1; i++)
        {
            if(prices[i+1] > prices[i])
            {
                profit  = profit + (prices[i+1]-prices[i]);
            }
        }
        return profit;
    }
};

你可能感兴趣的:(c++力扣刷题,1024程序员节)