forked from haoel/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bestTimeToBuyAndSellStock.cpp
52 lines (41 loc) · 1.62 KB
/
bestTimeToBuyAndSellStock.cpp
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
// Source : https://oj.leetcode.com/problems/best-time-to-buy-and-sell-stock/
// Author : Hao Chen
// Date : 2014-06-18
/**********************************************************************************
*
* Say you have an array for which the ith element is the price of a given stock on day i.
*
* If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock),
* design an algorithm to find the maximum profit.
*
**********************************************************************************/
class Solution {
public:
//
// This solution is O(1) space dynamic programming
//
// We can make sure the max profit at least be ZERO. So,
// 1) we have two pointers (begin & end )
// 2) if prices[end] - prices[begin] > 0, then move the "end" pointer to next
// 3) if prices[end] - prices[begin] <= 0, then move the "begin" pointer to current posstion.
// 4) tracking the max profit
//
// Notes:
// Some people think find the highest-price & lowest-price, this is wrong.
// Because the highest-price must be after lowest-price
//
int maxProfit(vector<int> &prices) {
int max=0, begin=0, end=0, delta=0;
for (int i=0; i<prices.size(); i++) {
end = i;
delta = prices[end] - prices[begin];
if (delta <= 0){
begin = i;
}
if ( delta > max ){
max = delta;
}
}
return max;
}
};