Say you have an array for which the 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).
Solution: 从头到尾扫描prices,如果i比i-1大,那么price[i] – price[i-1]就可以计入最后的收益中。这样扫描一次O(n)就可以获得最大收益了。constant space.
public class Solution { public int maxProfit(int[] prices) { if(prices == null || prices.length <= 1) return 0; int profit = 0; for(int i = 1; i < prices.length; i++) { profit += Math.max(0, prices[i] - prices[i - 1]); } return profit; } }
No comments:
Post a Comment