Say you have an array for which the ith element is the price of a given stock on day i.java
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).spa
public class Solution { public int maxProfit(int[] prices) { int sum,begin,end; int len = prices.length; sum = begin = end = 0; while(end < len){ begin = end; while(begin < len - 1 && prices[begin] > prices[begin + 1]) begin++; end = begin + 1; while(end < len && prices[end] > prices[end - 1]) end++; if(begin < end) sum += prices[end - 1] - prices[begin]; } return sum; } }