-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathBestTimeToBuyAndSellStock121.java
74 lines (52 loc) · 1.35 KB
/
BestTimeToBuyAndSellStock121.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package easy;
public class BestTimeToBuyAndSellStock121 {
// O(N^2) Time | O(1) Space
public static int maxProfit1(int[] prices) {
int max = 0;
for (int curr = 0; curr < prices.length - 1; curr++) {
for (int future = curr + 1; future < prices.length; future++) {
int currSell = prices[future] - prices[curr];
if (currSell > 0 && currSell > max) {
max = currSell;
}
}
}
return max;
}
// using Kadance's algorithm
// O(N) Time | O(1) Space
public static int maxProfit(int[] prices) {
if (prices.length < 2)
return 0;
int max = 0;
int currentMax = 0;
for (int i = 1; i < prices.length; i++) {
currentMax = currentMax + (prices[i] - prices[i - 1]);
if (currentMax > max) {
max = currentMax;
}
if (currentMax < 0) {
currentMax = 0;
}
}
return max;
}
// O(N) Time | O(1) Space
public static int maxProfit3(int[] prices) {
int minBuyPrice = Integer.MAX_VALUE;
int maxProfit = 0;
for (int currentPrice : prices) {
if (currentPrice < minBuyPrice) {
minBuyPrice = currentPrice;
} else if (currentPrice - minBuyPrice > maxProfit) {
maxProfit = currentPrice - minBuyPrice;
}
}
return maxProfit;
}
public static void main(String[] args) {
// int[] prices = { 7, 1, 5, 3, 6, 4 };
int[] prices = { 7, 6, 4, 3, 1 };
System.out.println(maxProfit3(prices));
}
}