数组:买卖股票的最佳时机II

买卖股票的最佳时机II

作者:力扣 (LeetCode)
链接:https://leetcode-cn.com/leetbook/read/top-interview-questions-easy/x2zsx1/
来源:力扣(LeetCode)

题目描述:

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

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

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

示例 1:

输入: [7,1,5,3,6,4]
输出: 7
解释: 在第 2 天(股票价格 = 1)的时候买入,在第 3 天(股票价格 = 5)的时候卖出, 这笔交易所能获得利润 = 5-1 = 4 。
随后,在第 4 天(股票价格 = 3)的时候买入,在第 5 天(股票价格 = 6)的时候卖出, 这笔交易所能获得利润 = 6-3 = 3

答案v1.0

class Solution {
public:
    int maxProfit(vector& prices) {
        int profit = 0, stock = 0, curPorfit = 0, sumProfit = 0;
        for (int i = 0; i < prices.size(); i++)
        {
            if (i == 0) //初始化股票
            {
                stock = prices[i];
            }
            else
            {
                if (prices[i] < prices[i - 1]) //根据题目给的规律,每次换股票的时间为昨天的股票价格大于今天的价格
                {
                    stock = prices[i];
                    sumProfit += profit; //每次买新股票,就把之前的收益累加。
                    profit = 0;
                }
                else
                {

                    curPorfit = prices[i] - stock; //寻找最大收益
                    if (curPorfit > profit)
                    {
                        profit = curPorfit;
                        curPorfit = 0;
                    }
                    
                }
                
            }
        }
        sumProfit += profit;
        return sumProfit;
    }
};

你可能感兴趣的:(leetcode-初级算法,leetcode,数据结构,c++)