美文网首页程序员
Leetcode - Best Time to Buy and

Leetcode - Best Time to Buy and

作者: 哈比猪 | 来源:发表于2016-09-23 17:20 被阅读0次

    题目链接

    Best Time to Buy and Sell Stock II

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

    解题思路

    TODO (稍后补上)

    解题代码

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

    相关文章

      网友评论

        本文标题:Leetcode - Best Time to Buy and

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