-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSellStock.java
More file actions
70 lines (63 loc) · 1.61 KB
/
SellStock.java
File metadata and controls
70 lines (63 loc) · 1.61 KB
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
package com.leetcode;
/**
* @author: yhl
* @DateTime: 2019/11/12 15:23
* @Description:
*/
public class SellStock {
public static void main(String[] args) {
int[] arr = {7, 1, 5, 3, 6, 8};
final SellStock sellStock = new SellStock();
final int i = sellStock.maxProfit3(arr);
System.out.println(i);
}
/**
* brute force
* @param prices
* @return
*/
public int maxProfit(int[] prices) {
int maxProfit = 0;
for (int i = 0; i < prices.length; i++) {
for (int j = i; j < prices.length; j++) {
maxProfit = Math.max(prices[j] - prices[i], maxProfit);
}
}
return maxProfit;
}
/**
* One Pass
* @param prices
* @return
*/
public int maxProfit2(int[] prices) {
int minPrice = Integer.MAX_VALUE;
int maxprofit = 0;
for (int i = 0; i < prices.length; i++) {
if (prices[i] < minPrice) {
minPrice = prices[i];
} else if (prices[i] - minPrice > maxprofit){
maxprofit = prices[i] - minPrice;
}
}
return maxprofit;
}
/**
* dp
* @param prices
* @return
*/
public int maxProfit3(int[] prices) {
if(prices.length<2) return 0;
int minPrice = prices[0];
int temp = 0;
for (int i = 1; i < prices.length; i++) {
if (prices[i] >= minPrice) {
temp = Math.max(temp, prices[i] - minPrice);
} else {
minPrice = prices[i];
}
}
return temp;
}
}