美文网首页
122. Best Time to Buy and Sell S

122. Best Time to Buy and Sell S

作者: YellowLayne | 来源:发表于2017-06-20 16:16 被阅读0次

    1.描述

    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).

    2.分析

    3.代码

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

    相关文章

      网友评论

          本文标题:122. Best Time to Buy and Sell S

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