[LeetCode]数组——买卖股票的最佳时机 II

Posted moonpie-sun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode]数组——买卖股票的最佳时机 II相关的知识,希望对你有一定的参考价值。

给定一个数组,它的第 i 个元素是一支给定股票第 i 天的价格。

设计一个算法来计算你所能获取的最大利润。你可以尽可能地完成更多的交易(多次买卖一支股票)。

注意:你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。

C++

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

 

C

int maxProfit(int* prices, int pricesSize) {
    int sum=0;
    for (int i=1; i<pricesSize; i++){
        if ((prices[i] - prices[i-1]) > 0){
            sum += (prices[i] -prices[i-1]);
        }   
    }
    return sum;
}

 

以上是关于[LeetCode]数组——买卖股票的最佳时机 II的主要内容,如果未能解决你的问题,请参考以下文章

菜鸟系列 Golang 实战 Leetcode —— 买卖股票的最佳时机系列(121. 买卖股票的最佳时机买卖股票的最佳时机 II

LeetCode 121. 买卖股票的最佳时机

LeetCode 121. 买卖股票的最佳时机

Leetcode刷题100天—121. 买卖股票的最佳时机(数组+双指针)—day24

Leetcode刷题100天—121. 买卖股票的最佳时机(数组+双指针)—day24

LeetCode 0122.买卖股票的最佳时机 II