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).
Idea: Whenever there is profit between two adjacent time slots, process one transaction, therefore the profit is maximized.
Time: O(n) Space: O(1)
Code:
public class Solution {
public int maxProfit(int[] prices) {
if(prices==null||prices.length<=1)
{
return 0;
}
int maxProfit=0;
for(int i=1;i<prices.length;i++)
{
maxProfit+=Math.max(0,prices[i]-prices[i-1]);
}
return maxProfit;
}
}
No comments:
Post a Comment