best-time-to-buy-and-sell-stock-ii

Posted 修修55

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了best-time-to-buy-and-sell-stock-ii相关的知识,希望对你有一定的参考价值。

//给定数组,统计各个数字的最大和。

class Solution {
public:
    int maxProfit(vector<int> &prices) {
        int res = 0;
        int n = prices.size();
        for (int i = 0; i < n - 1; ++i) {
            if (prices[i] < prices[i + 1]) {
                res += prices[i + 1] - prices[i];
            }
        }
        return res;
    }
};

 

以上是关于best-time-to-buy-and-sell-stock-ii的主要内容,如果未能解决你的问题,请参考以下文章