Problem
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).
Analysis
- Sum up all possible increase
- Time; O(n)
- Space; O(1)
Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Solution { | |
public int maxProfit(int[] prices) { | |
int rnt = 0; | |
//sum up all possible increase | |
for(int i=1; i<prices.length; i++){ | |
rnt += Math.max(0, prices[i]-prices[i-1]); | |
} | |
return rnt; | |
} | |
} |
Reference
No comments:
Post a Comment