Say you have an array for which the ith element is the price ofa given stock ondayi.
Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy oneand sell one share ofthe stock multiple times). However, you may not engage in multiple transactions atthe same time (ie, you must sell the stock before you buy again).
代码:
class Solution {
public:
int maxProfit(vector<int>& prices) {
int ret = 0;
for (int i = 1; i < prices.size(); i++) {
ret += max(prices[i] - prices[i - 1], 0);
}
return ret;
}
};