0
点赞
收藏
分享

微信扫一扫

122. Best Time to Buy and Sell Stock II

caoxingyu 2022-12-01 阅读 159


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

每一段单调递增区间的收益累加。

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



举报

相关推荐

0 条评论