forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_122.java
45 lines (42 loc) · 1.5 KB
/
_122.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.fishercoder.solutions;
/**
* 122. Best Time to Buy and Sell Stock II
*
* 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).
* */
public class _122 {
public static class Solution1 {
//peak and valley approach
public int maxProfit(int[] prices) {
int pro = 0;
int i = 0;
while (i < prices.length - 1) {
while (i < prices.length - 1 && prices[i] >= prices[i + 1]) {
i++;
}
int valley = prices[i];
while (i < prices.length - 1 && prices[i] <= prices[i + 1]) {
i++;
}
int peak = prices[i];
pro += peak - valley;
}
return pro;
}
}
public static class Solution2 {
//simple one pass approach: the above solution could be simplied as below
public int maxProfit(int[] prices) {
int pro = 0;
for (int i = 0; i < prices.length - 1; i++) {
if (prices[i + 1] > prices[i]) {
pro += prices[i + 1] - prices[i];
}
}
return pro;
}
}
}