leetcode 122. 买卖股票的最佳时机 II

2023.7.29

leetcode 122. 买卖股票的最佳时机 II_第1张图片

         把整体利润拆分成每天的利润,将股票值想象成一个折线图,将所有上升的值相加即可。 代码:

class Solution {
public:
    int maxProfit(vector& prices) {
        int ans = 0;
        for(int i=1; i 0) ans += prices[i]-prices[i-1];
        }
        return ans;
    }
};

你可能感兴趣的:(leetcode专栏,leetcode,算法,职场和发展,c++,数据结构)