-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02_main.c
60 lines (54 loc) · 1.54 KB
/
02_main.c
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
#include <stdio.h>
#include <stdlib.h>
//
// int maxProfit(int *prices, int pricesSize) {
// int maxProfit = 0;
// for (int i = 0; i < pricesSize; ++i) {
// for (int j = i + 1; j < pricesSize; ++j) {
// if (prices[j] - prices[i] > maxProfit) {
// maxProfit = prices[j] - prices[i];
// }
// }
// }
// return maxProfit;
// }
// int maxProfit(int *prices, int pricesSize) {
// int maxProfit = 0;
// int tempProfit = 0;
// int purchase = prices[0];
// for (int i = 1; i < pricesSize; ++i) {
// if(prices[i]-buy>ans)
// ans=prices[i]-buy;
// if(prices[i]<buy)
// buy=prices[i];
//
// // if (prices[i] > purchase) {
// // tempProfit = prices[i] - purchase;
// // purchase = prices[i];
// // }else {
// // if (maxProfit < tempProfit) {
// // maxProfit = tempProfit;
// // }
// // purchase = prices[i];
// // tempProfit = 0;
// // }
// }
// return maxProfit;
// }
int maxProfit(int *prices, int pricesSize) {
int maxProfit = 0, minPrice = prices[0];
for (int i = 0; i < pricesSize; i++) {
if (minPrice > prices[i]) {
minPrice = prices[i];
}
if (prices[i] - minPrice > maxProfit) {
maxProfit = prices[i] - minPrice;
}
}
return maxProfit;
}
void main() {
// [7,1,5,3,6,4]
int prices[6] = {7, 1, 5, 3, 6, 4};
printf("%d\n", maxProfit(prices, 6));
}