美文网首页
[LeetCode]122. Best Time to Buy

[LeetCode]122. Best Time to Buy

作者: Eazow | 来源:发表于2016-06-01 14:38 被阅读52次

    Say you have an array for which the ith element is the price of a given stock on day i.

    Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy one and sell one share of the stock multiple times). However, you may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).

    c代码
    #include <assert.h>
    
    int maxProfit(int* prices, int pricesSize) {
        int i = 0;
        int profit = 0;
        for(i = 0; i < pricesSize-1; i++) {
            if(prices[i+1] > prices[i])
                profit += prices[i+1]-prices[i];
        }
        return profit;
    }
    
    int main() {
        int prices[5] = {1,5,3,9,2};
        assert(maxProfit(prices, 5) == 10);
    
        return 0;
    }
    

    相关文章

      网友评论

          本文标题:[LeetCode]122. Best Time to Buy

          本文链接:https://www.haomeiwen.com/subject/tjyhdttx.html